An open API service indexing awesome lists of open source software.

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

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.

![Game Screen](/res/img/screen.png)

# 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 .
```