aboutsummaryrefslogtreecommitdiff
path: root/world.h
diff options
context:
space:
mode:
Diffstat (limited to 'world.h')
-rw-r--r--world.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/world.h b/world.h
index d9995ab..9709337 100644
--- a/world.h
+++ b/world.h
@@ -13,13 +13,14 @@ struct World {
int entity_count;
int recycle_bin_count;
- unsigned char bitmask[max_entities];
+ unsigned short bitmask[max_entities];
Entity recycle_bin[max_entities];
CSprite sprites [max_entities];
CPosition positions [max_entities];
CAnimated animateds [max_entities];
CBullet bullets [max_entities];
+ CEnemy enemies [max_entities];
Player player;
};