Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 855 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 855 Bytes

A simple Labyrinth game

A simple labyrinth game to learn how to program in C.
Made during first year of engineering school (programming course).

screenshot

Some Features

  • 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.

Installation

You must have installed Make and GCC on your computer to compile the program.

  1. Run command make in the folder which contains the Makefile to create the game binary.
  2. Then, you can run the game by typing ./bin/labyrinthe.
  3. You can clean the project with the command make clean.