tictactoe

Tic Tac Toe on the terminal using ANSI Escape Codes
Index Commits Files Refs README LICENSE
README.md (884B)
   1 # Tic Tac Toe on the Command Line
   2 
   3 This is a Command line tic tac toe game. It was first developed as a
   4 [solution](https://github.com/mjkloeckner/CB100/blob/3db111deffcd5ec767f81682f9f9c2106e05b69a/guias/2/ej12.cpp)
   5 to a practical problem of a University course
   6 
   7 ![Screencast of the game](https://github.com/mjkloeckner/tictactoe/assets/64109770/307ca00b-8d8f-42a4-b716-536cc25c114c)
   8 
   9 ## Dependencies
  10 
  11 - Unix Based Operating System (Linux, \*BSD, etc)
  12 - A terminal emulator that supports [ANSI escape sequences](https://en.wikipedia.org/wiki/ANSI_escape_code)
  13 - [Termios library](https://man7.org/linux/man-pages/man3/tcsetattr.3.html)
  14 - A C++ Compiler
  15 
  16 ## Quick Start
  17 
  18 Clone the repository and build it with a C++ compiler
  19 
  20 ```console
  21 $ g++ tictactoe.cpp -o tictactoe
  22 ```
  23 
  24 Then run the executable
  25 
  26 ```console
  27 $ ./tictactoe
  28 ```
  29 
  30 ## License
  31 
  32 [MIT](https://opensource.org/licenses/MIT)