├── .gitignore ├── Code-Game ├── client.py ├── server.py └── tic_tac_toe.py ├── Docs └── TicTacToe CN - Abstract.pdf ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /Code-Game/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suvoo/TicTacToe-Using-Socket-Server/HEAD/Code-Game/client.py -------------------------------------------------------------------------------- /Code-Game/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suvoo/TicTacToe-Using-Socket-Server/HEAD/Code-Game/server.py -------------------------------------------------------------------------------- /Code-Game/tic_tac_toe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suvoo/TicTacToe-Using-Socket-Server/HEAD/Code-Game/tic_tac_toe.py -------------------------------------------------------------------------------- /Docs/TicTacToe CN - Abstract.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suvoo/TicTacToe-Using-Socket-Server/HEAD/Docs/TicTacToe CN - Abstract.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suvoo/TicTacToe-Using-Socket-Server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Suvoo/TicTacToe-Using-Socket-Server/HEAD/README.md --------------------------------------------------------------------------------