A simple two-player checkers game implemented in C++ that runs in the terminal.
- Two player gameplay
- 8x8 board
- Colored terminal output
- Piece capture
- Multiple captures
- King promotion
- Winner detection
g++ main.cpp -o checkers
./checkers
The game uses system("CLS") which works on Windows terminals.
If you are using Linux or macOS you may need to replace it with:
system("clear")
Diba Yanough
This project was originally developed as an early university programming assignment while learning C++ fundamentals and implementing basic game logic in a console application.