https://github.com/arkenidar/snake-sdl
basic game : snake.c via libSDL3
https://github.com/arkenidar/snake-sdl
c game sdl sdl3 simple starter
Last synced: 10 days ago
JSON representation
basic game : snake.c via libSDL3
- Host: GitHub
- URL: https://github.com/arkenidar/snake-sdl
- Owner: arkenidar
- Created: 2025-04-17T20:03:50.000Z (16 days ago)
- Default Branch: main
- Last Pushed: 2025-04-17T20:03:55.000Z (16 days ago)
- Last Synced: 2025-04-23T21:15:41.771Z (10 days ago)
- Topics: c, game, sdl, sdl3, simple, starter
- Language: C
- Homepage: https://examples.libsdl.org/SDL3/demo/01-snake/
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# instructions
## requirements
- cmake
- ninja
- compiler such as GCC
- git for clone## clone SDL ( one time setup )
```shell
git clone https://github.com/libsdl-org/SDL
```## build and run with cmake
### from VSCode
### from Shell
```shell
cmake -S . -B build -G Ninja && cmake --build build && build/snake
```