A simple terminal-based Tic-Tac-Toe game.
To build the game, run the following commands:
cmake -S . -B build && cmake --build buildTo run the game, execute the following command from the build directory:
./build/tic_tac_toe- Use the numbers 1-9 on your keyboard to select a cell on the board.
- The numbers correspond to the cells as follows:
1 | 2 | 3
--+---+--
4 | 5 | 6
--+---+--
7 | 8 | 9
- Press 'q' to quit the game at any time.
- This is a simple implementation of the classic Tic-Tac-Toe game.
- It is written in C++23.
- It uses the
ncurseslibrary to render the game in the terminal.