A small 2D tile based RPG. Probably.
-
Install the 2D library SFML. If you're using Linux, check if your distribution has a prebuilt package for SFML (e.g.
community/sfml
on Arch Linux orlibsfml-dev
on Ubuntu/Debian). -
Clone the repository:
git clone https://github.com/binaryDiv/meowstuck.git
-
By default the Makefile uses
clang++
as the C++ compiler. If you don't have clang installed, just change theCXX
variable in the Makefile to use gcc'sg++
instead (should be one of the first lines):CXX := g++
-
Compile!
make
-
If it compiled successfully, you're done! To run the game, stay in the repository's root directory and run:
./bin/meowstuck # alternatively: make run
If you have any problems, feel free to contact me.
For now, you have to figure out yourself how to compile on Windows or any other system, sorry. :(
If you want a prebuilt Windows executable, just ask me and I'll try to build one.