A collection of simple terminal-based games implemented in pure C using only standard libraries.
Classic minesweeper game with grid-based gameplay.
- Navigate with WASD keys
- Place flags with 'f' key
- Reveal cells with Spacebar
Two-player Tic Tac Toe game.
- Navigate with WASD keys
- Place X or O with Spacebar
Match-3 puzzle game.
- Navigate with WASD keys
- Swap tiles with Spacebar + direction + Spacebar
Snake game.
- Navigate with WASD keys
T-Rex Dino game.
- Jump with 'w' key
- Crouch with 's' key
make # Compile all games
clang -o bin/<game> src/<game>.c # Or compile specific game./bin/<game>



