This is a simple Tic Tac Toe game with a graphical user interface (GUI) built using Python.
tictactoe-gui/
│
├── main.py
├── game_logic.py
├── gui.py
├── README.md
└── requirements.txtassets/: Contains image assets for the graphical version of the game.LICENSE: MIT License for the project.requirements.txt: Lists the dependencies required to run the Pygame version.tictactoe_oop.py: Object-oriented implementation of Tic Tac Toe using Pygame.tictactoe-numpy.py: Implementation of Tic Tac Toe using NumPy for board management.tictactoe.py: Basic implementation of Tic Tac Toe using Pygame.
- Python 3.12.4
- Tkinter (usually included with Python)
To install the required dependencies, run:
- Clone the repository:
git clone https://github.com/Halip26/tictactoe-gui.git- Installation
pip install -r requirements.txtTo run the console version using NumPy:
python tictactoe-numpy.pyTo run the graphical version using Pygame:
python tictactoe.pyTo run the object-oriented graphical version using Pygame:
python tictactoe_oop.pyThis project is licensed under the MIT LICENSE.