https://github.com/soreing/wincmdsnake
Console/Terminal Snake game written in C++ using the Windows API
https://github.com/soreing/wincmdsnake
console cpp game terminal winapi windows
Last synced: 8 months ago
JSON representation
Console/Terminal Snake game written in C++ using the Windows API
- Host: GitHub
- URL: https://github.com/soreing/wincmdsnake
- Owner: Soreing
- Created: 2021-05-14T13:14:07.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-04-20T02:27:08.000Z (almost 3 years ago)
- Last Synced: 2025-04-05T01:28:36.819Z (about 1 year ago)
- Topics: console, cpp, game, terminal, winapi, windows
- Language: C++
- Homepage:
- Size: 27.3 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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.

# Build
Use the following commands in a terminal to build the project.
(Requires [CMake](https://cmake.org/download/))
The executable is found in the `build/Debug` directory.
```
mkdir build
cd build
cmake ..
cmake --build .
```