diff options
author | jaroWMR <jarorutjes07@gmail.com> | 2024-10-23 12:32:06 +0200 |
---|---|---|
committer | jaroWMR <jarorutjes07@gmail.com> | 2024-10-23 12:32:06 +0200 |
commit | 96da34c1f973525ee57b71ea031d11a966903150 (patch) | |
tree | f02d9e743ae852715397bd406b54f5de5fa5d29f /src/crepe/ScriptSystem.h | |
parent | cead795b7ff7135e13caf9ad3b76628070391458 (diff) | |
parent | 30d84ef9ad4a0010288db18294766fd4d5ed6f4a (diff) |
merged with master
Diffstat (limited to 'src/crepe/ScriptSystem.h')
-rw-r--r-- | src/crepe/ScriptSystem.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/crepe/ScriptSystem.h b/src/crepe/ScriptSystem.h index 72e360b..1f472a0 100644 --- a/src/crepe/ScriptSystem.h +++ b/src/crepe/ScriptSystem.h @@ -1,17 +1,26 @@ #pragma once +#include <forward_list> + #include "System.h" +namespace crepe::api { +class Script; +} + namespace crepe { class ScriptSystem : public System { public: static ScriptSystem & get_instance(); - virtual void update(); + void update(); private: ScriptSystem(); ~ScriptSystem(); + +private: + std::forward_list<api::Script *> get_scripts(); }; } // namespace crepe |