https://github.com/bas-boop/tictactoe
C++ tictactoe
https://github.com/bas-boop/tictactoe
Last synced: about 2 months ago
JSON representation
C++ tictactoe
- Host: GitHub
- URL: https://github.com/bas-boop/tictactoe
- Owner: bas-boop
- Created: 2023-07-23T17:38:37.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-03T14:09:33.000Z (almost 2 years ago)
- Last Synced: 2023-08-03T15:37:56.578Z (almost 2 years ago)
- Language: C++
- Size: 43.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C++ Tic-Tac-Toe
A console app where you can play tic-tac-toe with somelse or with the computer.
If anyone can defeat the HARD AI, please share it with me.- [x] Co-op
- [X] AI opponent
- [x] Easy
- [x] Medium
- [X] Hard## Script highlights
[Main](TicTacToe/TicTacToe.cpp)
[InputHandeler](TicTacToe/InputHandeler.cpp)
[Grid](TicTacToe/Grid.cpp)## AI scripts
[AI](TicTacToe/AI.cpp)
[Easy](TicTacToe/EasyAI.cpp)
[Medium](TicTacToe/MediumAI.cpp)
[Hard](TicTacToe/HardAI.cpp)## What I have learend
* C++ classes
* C++ Enum
* Header files
* Valideting player input
* AI oppenents