mirror of
https://github.com/ProgramSnail/snake_2024.git
synced 2025-12-17 11:58:41 +00:00
11 lines
280 B
Markdown
11 lines
280 B
Markdown
|
|
# Game Template (Linux)
|
||
|
|
|
||
|
|
A simple framework for prototyping games. \
|
||
|
|
The framework provides a video buffer and simple keyboard and mouse input.
|
||
|
|
|
||
|
|
### Build
|
||
|
|
``sudo apt install g++ cmake libx11-dev`` \
|
||
|
|
``mkdir build && cd build`` \
|
||
|
|
``cmake -DCMAKE_BUILD_TYPE=Release ..`` \
|
||
|
|
``make``
|