Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
4 år sedan | |
---|---|---|
data | 4 år sedan | |
deps | 4 år sedan | |
src | 4 år sedan | |
.gitattributes | 10 år sedan | |
.gitignore | 4 år sedan | |
.gitmodules | 4 år sedan | |
CMakeLists.txt | 4 år sedan | |
README.org | 4 år sedan |
README.org
Simple 2D RPG
Simple 2D RPG made in C++ and SFML.
Download
Clone
$ git clone https://<git>.com/riyyi/rpg
$ cd rpg
$ git submodule init
$ git submodule update
Or
$ git clone --recursive https://<git>.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