Simple 2D RPG made in C++ and SFML
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
Riyyi 2ee81d12ab Update title and git urls hace 3 años
data Move data to project root hace 3 años
deps Add SFML, rapidjson as git submodule hace 3 años
src Change walking input to WASD hace 3 años
.gitattributes 💥🐫 Added .gitattributes hace 9 años
.gitignore Update .gitignore hace 3 años
.gitmodules Add SFML, rapidjson as git submodule hace 3 años
CMakeLists.txt Remove comments from cmake build file hace 3 años
README.org Update title and git urls hace 3 años

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:

Add build tools to system PATH:

  • C:mingw64\bin
  • C:\cmake\bin

Compile

$ mkdir build
$ cd build
$ cmake -G "MinGW Makefiles" ..
$ mingw32-make.exe

Libraries