1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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