Files
PlanetFleet/technology.h
2024-03-30 09:41:52 +02:00

19 lines
273 B
C++

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