diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2022-01-20 08:21:53 +0100 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2022-01-20 08:21:53 +0100 |
commit | 7efaa52afcc7e509f2d96af4acdd387a205ce157 (patch) | |
tree | 942d04c82b3f8c547f8008de2deba359864f2ddb /src/map.hpp | |
parent | buff shotty & audio is now working I guess ???? ? (diff) | |
download | threshold-7efaa52afcc7e509f2d96af4acdd387a205ce157.tar.gz threshold-7efaa52afcc7e509f2d96af4acdd387a205ce157.tar.bz2 threshold-7efaa52afcc7e509f2d96af4acdd387a205ce157.tar.xz threshold-7efaa52afcc7e509f2d96af4acdd387a205ce157.tar.zst threshold-7efaa52afcc7e509f2d96af4acdd387a205ce157.zip |
rework parsing and level mangment. commit often
Diffstat (limited to '')
-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 */ |