diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-22 13:31:15 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-22 13:31:15 +0100 |
commit | c0f0cc3d95eed2b24d19a157933c2a0ff5d2d4c2 (patch) | |
tree | fecc238a33a5e0cc663bef7bb93ddea694c50cb0 /src/crepe/system/ScriptSystem.h | |
parent | 07bca38a27f794ed6a2f74536f7a909530ce7df0 (diff) | |
parent | 25054cca2a8d06d1ceb60451db8dc383bc629eb8 (diff) |
Merge branch 'loek/scripts'
Diffstat (limited to 'src/crepe/system/ScriptSystem.h')
-rw-r--r-- | src/crepe/system/ScriptSystem.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/crepe/system/ScriptSystem.h b/src/crepe/system/ScriptSystem.h index 32e1fcd..936e9ca 100644 --- a/src/crepe/system/ScriptSystem.h +++ b/src/crepe/system/ScriptSystem.h @@ -2,8 +2,6 @@ #include "System.h" -#include "../types.h" - namespace crepe { class Script; @@ -25,15 +23,6 @@ public: * the \c BehaviorScript instance. */ void update() override; - -private: - /** - * \brief Aggregate all active \c BehaviorScript components and return a list - * of references to their \c Script instances (utility) - * - * \returns List of active \c Script instances - */ - RefVector<Script> get_scripts() const; }; } // namespace crepe |