diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-25 20:46:32 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-25 20:46:32 +0200 |
commit | 195f7770c42aa1ed1052725dde26699d2ecc689f (patch) | |
tree | 0c0504f4750947ac158f500d6f4fff4ed83d63d8 /src/crepe/api/Script.h | |
parent | e7377daf2fe3b759fbbf7e57f88c412c3b1cf011 (diff) |
implement get_component for scripts
Diffstat (limited to 'src/crepe/api/Script.h')
-rw-r--r-- | src/crepe/api/Script.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/crepe/api/Script.h b/src/crepe/api/Script.h index 0036d1f..4950b5c 100644 --- a/src/crepe/api/Script.h +++ b/src/crepe/api/Script.h @@ -1,11 +1,15 @@ #pragma once +#include <vector> + namespace crepe { class ScriptSystem; } namespace crepe::api { +class BehaviorScript; + class Script { friend class crepe::ScriptSystem; @@ -16,6 +20,20 @@ protected: // implemented as member methods in derivative user script classes and // registered in init(), otherwise this class will balloon in size with each // added event. + +protected: + template<typename T> + T & get_component(); + + template<typename T> + std::vector<std::reference_wrapper<T>> get_components(); + +private: + friend class crepe::api::BehaviorScript; + BehaviorScript * parent = nullptr; }; } // namespace crepe::api + +#include "Script.hpp" + |