Tic-tac-toe (American English), noughts and crosses (Commonwealth English), or Xs and Os is a paper-and-pencil game for two players, X and O, who take turns marking the spaces in a 3×3 grid. The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row is the winner.
In order to win the game, a player must place three of their marks in a horizontal, vertical, or diagonal row. The game is only one player against the computer. There are 4 difficulty mode which can be selected from the setting menu plus some other options that can be selected as well to improve experience of the user.
- Python 3
- Pygame (Used for sound effects)
- tkmacosx
- Pillow (PIL)
-
Clone this git repo
$ git clone https://github.com/Saadmairaj/TKtictac.git
-
Change directory to the Tktictac and create a virtual environment
$ cd Tktictac $ python -m venv env
-
Activate the virtual environment and install the dependencies
$ source env/bin/activate $ pip install -r requirements.txt
-
Now, we are ready to go! Run the Tktictac with the following command
$ python __main__.py
0.0.2
- Improved user interface
- Fix issues with overrideredirect on different platforms
0.0.1
- Fixed issues with sound
- Fixed issues with Light mode
- Fixed issues with titlebar
- Added icon
- Some other Bug fixes
0.0.0
- Stable release