diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-04-26 20:18:41 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-04-26 20:18:41 -0400 |
commit | 0294878ddabd07a677930536daff0e6ca3bea081 (patch) | |
tree | cbb466c102f636c930c5c5577b24301944b269e7 /src/map.h | |
parent | fix color to use argb (diff) | |
download | raycaster-0294878ddabd07a677930536daff0e6ca3bea081.tar.gz raycaster-0294878ddabd07a677930536daff0e6ca3bea081.tar.bz2 raycaster-0294878ddabd07a677930536daff0e6ca3bea081.zip |
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, |