# Tic Tac Toe on the Command Line

This is a Command line tic tac toe game. It was first developed as a
[solution](https://github.com/mjkloeckner/CB100/blob/3db111deffcd5ec767f81682f9f9c2106e05b69a/guias/2/ej12.cpp)
to a practical problem of a University course

![Screencast of the game](https://github.com/mjkloeckner/tictactoe/assets/64109770/307ca00b-8d8f-42a4-b716-536cc25c114c)

## Dependencies

- Unix Based Operating System (Linux, \*BSD, etc)
- A terminal emulator that supports [ANSI escape sequences](https://en.wikipedia.org/wiki/ANSI_escape_code)
- [Termios library](https://man7.org/linux/man-pages/man3/tcsetattr.3.html)
- A C++ Compiler

## Quick Start

Clone the repository and build it with a C++ compiler

```console
$ g++ tictactoe.cpp -o tictactoe
```

Then run the executable

```console
$ ./tictactoe
```

## License

[MIT](https://opensource.org/licenses/MIT)
