Made as a university project.
A C++ based graphics top-down platformer game made with SFML.
You can compile the sources manually or run the release executables
Head to the releases page to download a precompiled version of the game.
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
This project is not accepting contributions as of now