A simple puzzle game written in C, using the ncurses library for text-based graphics.
To build and run this game, you'll need the ncurses
library installed on your system.
On Debian/Ubuntu:
sudo apt-get install libncurses5-dev libncursesw5-dev
-
Clone or download the repository to your local machine.
-
Open a terminal in the project directory.
-
Compile the game files with:
gcc main.c fun.c -lncurses -o game_of_8
-
Run the game
./game_of_8