gldraphael / ttt

A really simple tictactoe game

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ttt

A really simple tictactoe game for the console.

I've also written one using MonoGame if you're looking for GUI: https://github.com/gldraphael/mg-ttt

Running the program

  1. Clone the repository
  2. cd into the cloned directory and run make.
  3. An a.out executable should be generated. Run it using ./a.out.

Alternatively you may paste this in your terminal:

git clone https://github.com/gldraphael/ttt.git
cd ttt
make
./a.out

Also tested on windows using MSVC. Use cl /EHsc src/main.cpp to build.

For windows use:

git clone https://github.com/gldraphael/ttt.git
cd ttt
cl /EHsc src/main.cpp
./main.exe

Requirements

  • Clang or G++ (or MSVC for windows)

About

A really simple tictactoe game

License:MIT License


Languages

Language:C++ 93.7%Language:C 3.9%Language:Makefile 2.4%