Simple 2D RPG made in C++ and SFML
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
Riyyi 2ee81d12ab Update title and git urls 3 anni fa
data Move data to project root 3 anni fa
deps Add SFML, rapidjson as git submodule 3 anni fa
src Change walking input to WASD 3 anni fa
.gitattributes 💥🐫 Added .gitattributes 9 anni fa
.gitignore Update .gitignore 3 anni fa
.gitmodules Add SFML, rapidjson as git submodule 3 anni fa
CMakeLists.txt Remove comments from cmake build file 3 anni fa
README.org Update title and git urls 3 anni fa

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