summaryrefslogtreecommitdiff
path: root/sim/src/systems.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2023-02-14 00:13:02 +0100
committerAki <please@ignore.pl>2023-02-14 00:28:48 +0100
commit632c367ae6885657e6c99b96b8bf7a96b61a2bb9 (patch)
tree3b6210086d2c082533288d06f2843b9150e747dd /sim/src/systems.h
parent2a9f378c66b28cef1c5ee063cf4d7e4e2889076e (diff)
downloadkurator-632c367ae6885657e6c99b96b8bf7a96b61a2bb9.zip
kurator-632c367ae6885657e6c99b96b8bf7a96b61a2bb9.tar.gz
kurator-632c367ae6885657e6c99b96b8bf7a96b61a2bb9.tar.bz2
Extracted basic simulation behaviour and that part of state to own class
Diffstat (limited to 'sim/src/systems.h')
-rw-r--r--sim/src/systems.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/sim/src/systems.h b/sim/src/systems.h
new file mode 100644
index 0000000..4c8838b
--- /dev/null
+++ b/sim/src/systems.h
@@ -0,0 +1,20 @@
+#pragma once
+
+#include <kurator/engine/Context.h>
+
+#include "TeamManager.h"
+
+
+namespace kurator
+{
+namespace sim
+{
+
+
+void pick_random_targets(engine::Context& ctx, TeamManager& manager);
+void keep_at_range(engine::Context& ctx);
+void kill_off_dead(engine::Context& ctx);
+
+
+} // namespace sim
+} // namespace kurator