From ace5c3f3093c50ff7fa6f8b281a377e3788abbd5 Mon Sep 17 00:00:00 2001 From: jacopograndi Date: Sun, 29 Aug 2021 13:57:41 +0200 Subject: adding techs --- game/tech.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 game/tech.h (limited to 'game/tech.h') 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 +#include + +#include "../umath/vec2.h" + +class Tech { + public: + Tech() {} + + std::string name; + std::vector cost { 0, 0 }; + + vec2 spritebounds { 0, 0 }; +}; + +#endif \ No newline at end of file -- cgit v1.2.3-54-g00ecf