10f83431f29c052ff9340e7fe105dbaf51de71a6
Simple RPG
Simple RPG game made in C++ and SFML.
Download
Clone
$ git clone https://github.com/riyyi/rpg
$ cd rpg
$ git submodule init
$ git submodule update
Or
$ git clone --recursive https://github.com/riyyi/rpg
Update
$ git pull
$ git submodule update --recursive
Build instructions
Linux
Prerequisites
Install the dependencies:
Compile
$ mkdir build
$ cd build
$ cmake ..
$ make
Windows
Prerequisites
Download and extract build tools:
- MinGW (64-bit) get the version recommended by SFML!
- CMake
Add build tools to system PATH:
- C:mingw64\bin
- C:\cmake\bin
Compile
$ mkdir build
$ cd build
$ cmake -G "MinGW Makefiles" ..
$ mingw32-make.exe
References
Programming
Book
- Michael Dawson - Beginning C++ Through Game Programming, Third Edition - 2010
Languages
C++
100%