diff options
Diffstat (limited to 'src/map.h')
-rw-r--r-- | src/map.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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, |