summaryrefslogtreecommitdiff
path: root/sim/src/Spawner.h
diff options
context:
space:
mode:
Diffstat (limited to 'sim/src/Spawner.h')
-rw-r--r--sim/src/Spawner.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/sim/src/Spawner.h b/sim/src/Spawner.h
new file mode 100644
index 0000000..ebae699
--- /dev/null
+++ b/sim/src/Spawner.h
@@ -0,0 +1,21 @@
+#pragma once
+
+#include <kurator/battles/components.h>
+
+
+namespace kurator
+{
+namespace battles
+{
+
+
+class Spawner
+{
+public:
+ virtual ~Spawner() = default;
+ virtual Transform get(int team) = 0;
+};
+
+
+} // namespace battles
+} // namespace kurator