A classic Snake game implemented in C++ 17 using Raylib. All visual artwork and sound effects were created by me.
- Windows 10 or later
- Git
- CMake (version 3.11 or later)
- A C++17 compatible compiler
- Clone the repository:
git clone https://github.com/jackboakes/Snake.git
- Open the project folder:
cd Snake
- Generate build files and build the project:
cmake -B build -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release
- After building, run the game from the command line:
build\Release\Snake.exe
- W: Move Up
- A: Move Left
- S: Move Down
- D: Move Right
- ESC: Quit Game
- Left Click: Select Menu Option


