A simple c++ implementation of Tic Tac Toe with the minimax algorithm.
Modified from https://github.com/Chaoskira/tictactoe-minimax
compile:
g++ play.cpp game.cpp -o playrun:
./playRealization in myself!!
one player is client, another is server
compile server:
g++ game_server.cpp -o server -lws2_32run server:
./servercompile client:
g++ game_client.cpp -o client -lws2_32run client:
./client