diff options
author | Aki <please@ignore.pl> | 2023-02-13 01:06:31 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2023-02-13 01:06:31 +0100 |
commit | 03bb1614c25a56ef6225db09c4c59b7a5f8fa808 (patch) | |
tree | 11216b0104103d07ebbe7a707c967c42ccc93c3e /sim/include | |
parent | 6f8db05c02f941ce75da34e3c50c987d03c23e54 (diff) | |
download | kurator-03bb1614c25a56ef6225db09c4c59b7a5f8fa808.zip kurator-03bb1614c25a56ef6225db09c4c59b7a5f8fa808.tar.gz kurator-03bb1614c25a56ef6225db09c4c59b7a5f8fa808.tar.bz2 |
Externalized part of simulation systems
Diffstat (limited to 'sim/include')
-rw-r--r-- | sim/include/kurator/sim/systems.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sim/include/kurator/sim/systems.h b/sim/include/kurator/sim/systems.h new file mode 100644 index 0000000..76353c2 --- /dev/null +++ b/sim/include/kurator/sim/systems.h @@ -0,0 +1,17 @@ +#pragma once + +#include <kurator/engine/Context.h> + + +namespace kurator +{ +namespace sim +{ + + +void keep_at_range(engine::Context& ctx); +void kill_off_dead(engine::Context& ctx); + + +} // namespace sim +} // namespace kurator |