Games in your terminal. The following games have been implemented:
mines: Minesweepersnake: Snakeblockade: Blockade (a 2-player version of Snake)
You need ncurses in order to build.
It usually comes by default on Linux and macOS, but you can check if you have it by running tic -V in your terminal.
To build, run
make all
or build a specific game,
make <name>
After building, run a game,
./bin/<name>
- The games typically use Vim
hjklcontrols or arrow keys to move. - The
qkey will quit the game. - The
zkey will reset the game. - The
rkey will refresh the display, e.g. if something caused the game to render incorrectly.