summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/map.h b/src/map.h
index 3e265b2..ecb60ef 100644
--- a/src/map.h
+++ b/src/map.h
@@ -2,6 +2,18 @@
#include <stdint.h>
+// #define MAP_SIZE 8
+// static uint8_t MAPDATA[MAP_SIZE * MAP_SIZE] = {
+// 1, 1, 1, 1, 1, 1, 1, 1,
+// 1, 0, 0, 0, 0, 0, 0, 1,
+// 1, 0, 0, 0, 0, 3, 0, 1,
+// 1, 0, 0, 0, 0, 0, 0, 1,
+// 1, 0, 2, 0, 4, 4, 0, 1,
+// 1, 0, 0, 0, 4, 0, 0, 1,
+// 1, 0, 3, 0, 0, 0, 0, 1,
+// 1, 1, 1, 1, 1, 1, 1, 1,
+// };
+
#define MAP_SIZE 8
static uint8_t MAPDATA[MAP_SIZE * MAP_SIZE] = {
1, 1, 1, 1, 1, 1, 1, 1,