summaryrefslogtreecommitdiff
path: root/universe/include
diff options
context:
space:
mode:
Diffstat (limited to 'universe/include')
-rw-r--r--universe/include/kurator/universe/ShipType.h20
-rw-r--r--universe/include/kurator/universe/TurretType.h22
2 files changed, 42 insertions, 0 deletions
diff --git a/universe/include/kurator/universe/ShipType.h b/universe/include/kurator/universe/ShipType.h
new file mode 100644
index 0000000..5f5eec1
--- /dev/null
+++ b/universe/include/kurator/universe/ShipType.h
@@ -0,0 +1,20 @@
+#pragma once
+
+#include <string>
+
+
+namespace kurator
+{
+namespace universe
+{
+
+
+struct ShipType
+{
+ std::string name;
+ double base_health_points;
+};
+
+
+} // namespace universe
+} // namespace kurator
diff --git a/universe/include/kurator/universe/TurretType.h b/universe/include/kurator/universe/TurretType.h
new file mode 100644
index 0000000..b3a6eb2
--- /dev/null
+++ b/universe/include/kurator/universe/TurretType.h
@@ -0,0 +1,22 @@
+#pragma once
+
+#include <string>
+
+
+namespace kurator
+{
+namespace universe
+{
+
+
+struct TurretType
+{
+ std::string name;
+ double base_damage;
+ double rate_of_fire;
+ double range;
+};
+
+
+} // namespace universe
+} // namespace kurator