diff options
Diffstat (limited to 'world.h')
-rw-r--r-- | world.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -3,6 +3,7 @@ #include "components.h" #include "config.h" +#include "map.h" #include "player.h" typedef int Entity; @@ -23,7 +24,10 @@ struct World { CEnemy enemies [max_entities]; CCollider colliders [max_entities]; + int cam_x, cam_y; + Player player; + Map map; }; void init_world(World* world); |