diff options
author | turnipgod | 2025-03-01 19:59:26 -0500 |
---|---|---|
committer | turnipgod | 2025-03-01 19:59:26 -0500 |
commit | 3fcec49d18769801d548e8acda0ed82fabb6c221 (patch) | |
tree | 19b962968396b2ba55638e83972d87ce35941db3 /src/main.c | |
parent | 5a8765cddc3fc328f3cb22606688dd1ccb2f2f22 (diff) |
tetromino data
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 661233b..1761efe 100644 --- a/src/main.c +++ b/src/main.c @@ -8,6 +8,8 @@ #define BLOCK_SIZE 25 +#include "tetromino.h" + struct Color matrix[MATRIX_WIDTH][MATRIX_HEIGHT]; void render_matrix(void); |