diff options
Diffstat (limited to 'world.h')
-rw-r--r-- | world.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -5,11 +5,13 @@ #include "config.h" #include "map.h" #include "player.h" +#include "wave.h" typedef int Entity; typedef struct World World; +/* Keep as POD. */ struct World { int entity_count; int recycle_bin_count; @@ -27,8 +29,10 @@ struct World { Player player; Map map; + Waver waver; int cam_x, cam_y; + int enemy_count; int gmemory, oom; }; |