diff options
author | jacopograndi <jak.sk8@hotmail.it> | 2021-08-29 13:57:41 +0200 |
---|---|---|
committer | jacopograndi <jak.sk8@hotmail.it> | 2021-08-29 13:57:41 +0200 |
commit | ace5c3f3093c50ff7fa6f8b281a377e3788abbd5 (patch) | |
tree | 8a52803dc2b777822e9b1cab148bec8798bfeadf /game/tech.h | |
parent | a8bcacc95045102e67f2feabbdddf79535837554 (diff) |
adding techs
Diffstat (limited to 'game/tech.h')
-rw-r--r-- | game/tech.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/game/tech.h b/game/tech.h new file mode 100644 index 0000000..a8de9c1 --- /dev/null +++ b/game/tech.h @@ -0,0 +1,19 @@ +#ifndef TECH_H +#define TECH_H + +#include <vector> +#include <string> + +#include "../umath/vec2.h" + +class Tech { + public: + Tech() {} + + std::string name; + std::vector<int> cost { 0, 0 }; + + vec2 spritebounds { 0, 0 }; +}; + +#endif
\ No newline at end of file |