An open API service indexing awesome lists of open source software.

https://github.com/bas-boop/tictactoe

C++ tictactoe
https://github.com/bas-boop/tictactoe

Last synced: about 2 months ago
JSON representation

C++ tictactoe

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