diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-06-22 22:10:28 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-06-22 22:10:28 +0100 |
commit | 4a8127146eafd4fef5b478c1bf9f5a152c8c4cd5 (patch) | |
tree | 05b820a74bcaffa340eede419b3e1fe24059c477 /src/map.h | |
parent | 7723c5f8a9f0ea5345ebefecd31fe22f3601b32e (diff) | |
download | gold-mine-run-4a8127146eafd4fef5b478c1bf9f5a152c8c4cd5.tar.gz gold-mine-run-4a8127146eafd4fef5b478c1bf9f5a152c8c4cd5.zip |
Import entities from the map and spawn them
Diffstat (limited to 'src/map.h')
-rw-r--r-- | src/map.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -14,6 +14,11 @@ #define MAP_FIRST_BLOCKED 40 #define MAP_FIRST_DEADLY 100 +typedef enum +{ + Player = 0, +} EntityType; + void map_init(const uint8_t map[]); void map_render(); |