Snake recreated in C++ using SFML.
Go to file
2023-10-24 00:55:30 -05:00
src Added scoring and chance-based algorithm picking 2023-10-24 00:54:30 -05:00
.gitignore Many issues restructuring the program, needs cleaning 2023-03-17 17:27:02 -05:00
Arial.ttf Added basic game over screen 2023-05-17 20:20:01 -05:00
CMakeLists.txt Turned Makefile into CMake 2023-08-10 18:34:43 -05:00
README.md Merge conflict fix 2023-08-10 18:52:37 -05:00

SnakePlusPlus

A version of Snake made in C++ and using SFML

Controls

  • Use the arrow keys to move the Snake
  • Use the escape key to close the game

Compiling the game

Prerequisites

Clone the repository and compile it using:

git clone https://github.com/TriantaTV/snakeplusplus.git

In order to compile the project, simply run these two commands:

cmake -B build -S .
cmake --build build

Running the Project

The program should now be compiled at ./build/bin/snakeplusplus

Simply run the program using:

build/bin/snakeplusplus