Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 🎉.