mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
20 lines
306 B
C++
20 lines
306 B
C++
#ifndef TECHNOLOGY_H
|
|
#define TECHNOLOGY_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace battleship{
|
|
struct Technology{
|
|
int id, cost;
|
|
std::string name;
|
|
std::string icon;
|
|
std::string description;
|
|
std::vector<int> parents;
|
|
std::vector<int> children;
|
|
std::vector<int> abilities;
|
|
};
|
|
}
|
|
|
|
#endif
|