Simple 2D RPG made in C++ and SFML
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Riyyi 2ee81d12ab Update title and git urls před 3 roky
data Move data to project root před 3 roky
deps Add SFML, rapidjson as git submodule před 3 roky
src Change walking input to WASD před 3 roky
.gitattributes 💥🐫 Added .gitattributes před 9 roky
.gitignore Update .gitignore před 3 roky
.gitmodules Add SFML, rapidjson as git submodule před 3 roky
CMakeLists.txt Remove comments from cmake build file před 3 roky
README.org Update title and git urls před 3 roky

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