A simple labyrinth game to learn how to program in C.
Made during first year of engineering school (programming course).
- Basic labyrinth game in a graphic interface with SDL
- Simple algorithm to generate one-way labyrinths
- Simple algorithm to solve those labyrinths
- 3 difficulty choices : easy,medium and hard.
You must have installed Make and GCC on your computer to compile the program.
- Run command
make
in the folder which contains theMakefile
to create the game binary. - Then, you can run the game by typing
./bin/labyrinthe
. - You can clean the project with the command
make clean
.