aboutsummaryrefslogtreecommitdiff
path: root/world.h
diff options
context:
space:
mode:
Diffstat (limited to 'world.h')
-rw-r--r--world.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/world.h b/world.h
index 5f324a8..6749dbc 100644
--- a/world.h
+++ b/world.h
@@ -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;
};