Simple 2D RPG made in C++ and SFML
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Riyyi 2ee81d12ab Update title and git urls il y a 3 ans
data Move data to project root il y a 3 ans
deps Add SFML, rapidjson as git submodule il y a 3 ans
src Change walking input to WASD il y a 3 ans
.gitattributes 💥🐫 Added .gitattributes il y a 9 ans
.gitignore Update .gitignore il y a 3 ans
.gitmodules Add SFML, rapidjson as git submodule il y a 3 ans
CMakeLists.txt Remove comments from cmake build file il y a 3 ans
README.org Update title and git urls il y a 3 ans

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