diff options
Diffstat (limited to 'src/map.hpp')
-rw-r--r-- | src/map.hpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/map.hpp b/src/map.hpp new file mode 100644 index 0000000..f1fc2a7 --- /dev/null +++ b/src/map.hpp @@ -0,0 +1,28 @@ +#ifndef MAP_H +#define MAP_H + +#include <iostream> + +typedef struct Level { + int nPerWave; + int nWaves; + int nTotal; + + int nGrunts; + int gRadius; + int gHp; + + int nBoss; + int bRadius; + int bHp; + + int nMinion; + int mRadius; + int mHp; + + std::string next; // next level + std::string current; // next level + std::string background; // next level +} Level; + +#endif /* MAP_H */ |