examples/snake: Actually fixed build this time.

This commit is contained in:
Ryan C. Gordon 2024-07-30 13:43:03 -04:00
parent 883576beb8
commit 3b5c3d6cc8
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,9 @@
*/
#ifndef SNAKE_H
#define SNAKE_H
#include <SDL3/SDL.h>
#define SNAKE_GAME_WIDTH 24U
#define SNAKE_GAME_HEIGHT 18U
#define SNAKE_MATRIX_SIZE (SNAKE_GAME_WIDTH * SNAKE_GAME_HEIGHT)