aboutsummaryrefslogtreecommitdiff
path: root/game/tech.h
diff options
context:
space:
mode:
Diffstat (limited to 'game/tech.h')
-rw-r--r--game/tech.h19
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