Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 532 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 532 Bytes

Snake Game

Windows Console Snake game where the player collects apples to gain points. The length of the snake increases by one tile after each apple collected. At different score milestones, the level is progressed and the snake gets faster to add difficulty.

Game Screen

Build

Use the following commands in a terminal to build the project. (Requires CMake)

The executable is found in the build/Debug directory.

mkdir build
cd build
cmake ..
cmake --build .