Simple 2D RPG made in C++ and SFML
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Riyyi 2ee81d12ab Update title and git urls 4年前
data Move data to project root 4年前
deps Add SFML, rapidjson as git submodule 4年前
src Change walking input to WASD 4年前
.gitattributes 💥🐫 Added .gitattributes 10年前
.gitignore Update .gitignore 4年前
.gitmodules Add SFML, rapidjson as git submodule 4年前
CMakeLists.txt Remove comments from cmake build file 4年前
README.org Update title and git urls 4年前

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