Simple 2D RPG made in C++ and SFML
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Riyyi 2ee81d12ab Update title and git urls 3 년 전
data Move data to project root 3 년 전
deps Add SFML, rapidjson as git submodule 3 년 전
src Change walking input to WASD 3 년 전
.gitattributes 💥🐫 Added .gitattributes 9 년 전
.gitignore Update .gitignore 3 년 전
.gitmodules Add SFML, rapidjson as git submodule 3 년 전
CMakeLists.txt Remove comments from cmake build file 3 년 전
README.org Update title and git urls 3 년 전

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