An implementation of the Othello game written in C.
- Install CMake
sudo apt install cmake
on Linux.
- Install ncurses
sudo apt install libncurses5-dev
on Linux.
- Run
cmake .
to create a makefile to compile the code. - Run
make
to create an executable to run the game. - Run
./bin/game
to play the game.- Add the difficulty parameter to set the difficulty:
./bin/game --difficulty [1-3]
- Set to difficulty of 2 if no paramter is set
- Add the difficulty parameter to set the difficulty: