/Snake

Snake in C++ using SFML

Primary LanguageC++

Snake Game

Snake game written in C++ using SFML.

How to build

Execute the following command on your terminal

cmake CmakeLists.txt

to create the Makefile, then just use

make

to build the program.

Font selection

The file 04B_30_.TTF is the font file for the score.
To change it, include the respective font file on the project directory and change the file name in this line

font.loadFromFile("04B_30__.TTF");

in src/main.cpp.