#ifndef TECHNOLOGY_H #define TECHNOLOGY_H #include #include namespace battleship{ struct Technology{ int cost; std::string name; std::string icon; std::string description; std::vector parents; std::vector abilities; }; } #endif