/Realm-of-Enigmas

Official Repository for the Realm of Enigmas first prototype

Primary LanguageC++GNU General Public License v3.0GPL-3.0

Realm Of Enigmas

Made as a university project.

A C++ based graphics top-down platformer game made with SFML.

How do I try it out?

You can compile the sources manually or run the release executables

Download releases:

Head to the releases page to download a precompiled version of the game.

Compile from sources

This guide is for compiling on linux, although compiling on Windows is possible but not supported.

The project dependencies can be installed by:

sudo apt install git make cmake clang libsfml-dev

Next, clone the repo, and compile the code.

git clone https://github.com/thomas-catt/enigma-game.git
cd enigma-game

To compile using CMake:

cmake .
make

The executable window is placed in bin. To run it:

./bin/window

The last two steps can be automatically performed through the install script:

./run.sh # Compiles and runs the executable

I want to contribute!

This project is not accepting contributions as of now