diff options
Diffstat (limited to 'Level.h')
-rw-r--r-- | Level.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -4,6 +4,7 @@ #include "Player.h" #include "Screen.h" #include "Platform.h" +#include "Hazard.h" class Level { public: @@ -29,6 +30,10 @@ class Level { int numPlatforms; Platform platform[576]; + // Hazards + int numHazards; + Hazard hazard[576]; + // Reads in the map file void loadMap(int levelNo); |