mirror of
https://github.com/dora-meowmeow/countdown-snake.git
synced 2026-02-23 04:15:23 +01:00
10 lines
195 B
Markdown
10 lines
195 B
Markdown
A game of snake that uses decay timer per cell instead of constraints to display the snake
|
|
|
|
# How to compile
|
|
You need to install ``libncurses-dev``
|
|
|
|
```
|
|
g++ main.cpp -o Game -lncurses
|
|
./Game
|
|
```
|