diff options
author | Aki <please@ignore.pl> | 2022-11-15 00:37:54 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2022-11-15 00:37:54 +0100 |
commit | 5d0cba2b45aa30226ba72231b35424d404a5eec1 (patch) | |
tree | 4b157bbb550534eec38b1a0b45e2cbd10ce43fcb /battles/include | |
parent | 4f3de714cd04ee5d99167f415843573d6bbd9f62 (diff) | |
download | kurator-5d0cba2b45aa30226ba72231b35424d404a5eec1.zip kurator-5d0cba2b45aa30226ba72231b35424d404a5eec1.tar.gz kurator-5d0cba2b45aa30226ba72231b35424d404a5eec1.tar.bz2 |
Implemented naive skeleton for types repository in universe
Diffstat (limited to 'battles/include')
-rw-r--r-- | battles/include/kurator/battles/ShipConfig.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/battles/include/kurator/battles/ShipConfig.h b/battles/include/kurator/battles/ShipConfig.h index bc01ad2..2066430 100644 --- a/battles/include/kurator/battles/ShipConfig.h +++ b/battles/include/kurator/battles/ShipConfig.h @@ -1,10 +1,8 @@ #pragma once +#include <string> #include <vector> -#include <kurator/universe/ShipType.h> -#include <kurator/universe/TurretType.h> - namespace kurator { @@ -15,8 +13,8 @@ namespace battles struct ShipConfig { int team; - universe::ShipType type; - std::vector<universe::TurretType> turrets; + std::string type; + std::vector<std::string> turrets; }; |