No description
images | ||
src | ||
.gitignore | ||
LICENSE | ||
Makefile | ||
README.md |
Tic Tac Toe
Okay, you know the rules.
This is the Tic Tac Toe everybody knows. It implements the following:
- Ability to play against another player
- Ability to play against the computer
- GUI
The game logic is written in Python, and the GUI is in C. Therefore, for communicating between the Python game and the C interface, there is a Python client, a C client, and a C server.
The server acts as a routing interface to communicate with the GUI on one side and the game on the other.
Quickstart
A simple make
will create the launch
binary, which in turn handles the
forking process to run the server and clients.
Requirements
python >= 3.6