summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorturnipgod2025-03-01 19:59:26 -0500
committerturnipgod2025-03-01 19:59:26 -0500
commit3fcec49d18769801d548e8acda0ed82fabb6c221 (patch)
tree19b962968396b2ba55638e83972d87ce35941db3 /src
parent5a8765cddc3fc328f3cb22606688dd1ccb2f2f22 (diff)
tetromino data
Diffstat (limited to 'src')
-rw-r--r--src/main.c2
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);