Blind Maze is a maze navigation game built with C and raylib in which the maze is not fully visible from the start. At the beginning of each level, the player sees mostly empty space. As the player moves, maze walls gradually appear, revealing the structure of the maze step by step. The objective is to navigate through the maze and reach the exit gate, which is not visible to the player. The exit is located in the bottom-right area of the maze.
- The player is represented by a black square
- The maze blocks are gray
Before running the game, make sure you have:
- raylib installed (4.5.0 version used)
- A C compiler (
gcc) make
⚠️ Important:
The raylib folder and the project folder must be in the same directory
(for example, both inside yourDownloadsfolder).
-
Download the repository
- Click Code → Download ZIP
- Extract the ZIP file
-
Open a terminal and navigate to the project folder
cd blind-maze-game-main -
Build the project
make
-
Run the game
./mygame

