Skip to content

A simple C implementation of the Tic Tac Toe game

Notifications You must be signed in to change notification settings

Spippolo/tic-tac-toe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tic Tac Toe

Tic Tac Toe

Requirements

To compile the software you need GCC and the SDL2 and SDL2_image libraries.

On Mac OSX, GCC comes with XCode and you can install the libraries with brew:

brew install sdl2 sdl2_image

Usage

~$ make
gcc -c `pkg-config --cflags sdl2 SDL2_image` main.c
gcc `pkg-config --libs sdl2 SDL2_image` -lm main.o -o main.out
~$ ./main.out

Enjoy!

About

A simple C implementation of the Tic Tac Toe game

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published