From 4a8127146eafd4fef5b478c1bf9f5a152c8c4cd5 Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Thu, 22 Jun 2023 22:10:28 +0100 Subject: Import entities from the map and spawn them --- src/map.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/map.h') diff --git a/src/map.h b/src/map.h index 42f8da7..992c982 100644 --- a/src/map.h +++ b/src/map.h @@ -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(); -- cgit v1.2.3