Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meysam81/tic-tac-toe
A GUI implementation of Tic Tac Toe game, with a computer player
https://github.com/meysam81/tic-tac-toe
Last synced: about 1 month ago
JSON representation
A GUI implementation of Tic Tac Toe game, with a computer player
- Host: GitHub
- URL: https://github.com/meysam81/tic-tac-toe
- Owner: meysam81
- License: mit
- Created: 2020-12-25T04:43:29.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-25T10:29:42.000Z (almost 4 years ago)
- Last Synced: 2024-05-01T15:00:17.235Z (7 months ago)
- Language: C++
- Homepage:
- Size: 177 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tic Tac Toe 🎮
This is a GUI version of the Tic Tac Toe game with a computer opponent. Here's
a demonstration of how the game works.![Game Demo](./images/tic-tac-toe.gif)
This game was developed using [Qt](https://qt.io) 5.15.2. To run the game, you have 2 options:
1. Either to build & run from the Qt itself; which is as simple as pressing
`Ctrl + r`.
2. To build & run from the terminal:```bash
qmake tic-tac-toe.pro
make
./tictactoe
```Cheers 🍻 & Enjoy 🎉.