SDL/examples/game/01-snake
Sam Lantinga a90ad3b0e2 Removed SDL_bool in favor of plain bool
We require stdbool.h in the build environment, so we might as well use the plain bool type.

If your environment doesn't have stdbool.h, this simple replacement will suffice:
typedef signed char bool;
2024-09-18 08:32:30 -07:00
..
README.txt examples: Split up description text by line breaks. 2024-07-30 15:37:46 -04:00
snake.c Removed SDL_bool in favor of plain bool 2024-09-18 08:32:30 -07:00

README.txt

A complete game of Snake, written in SDL.