diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-20 18:09:06 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-20 18:09:06 +0100 |
commit | f0effabc7555c08bec9a4284baad8c4e1c61c110 (patch) | |
tree | 5a413dfbc9cb0c4e8dbeb64af3281cb8c400cc20 /src/crepe/api/BehaviorScript.h | |
parent | a67c52325bc8cbd264293b9dcc217fc07bfbaf57 (diff) |
clean up CollisionTest
Diffstat (limited to 'src/crepe/api/BehaviorScript.h')
-rw-r--r-- | src/crepe/api/BehaviorScript.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/crepe/api/BehaviorScript.h b/src/crepe/api/BehaviorScript.h index 9d85d4c..d556fe5 100644 --- a/src/crepe/api/BehaviorScript.h +++ b/src/crepe/api/BehaviorScript.h @@ -39,11 +39,14 @@ public: * \brief Set the concrete script of this component * * \tparam T Concrete script type (derived from \c crepe::Script) + * \tparam Args Arguments for concrete script constructor + * + * \param args Arguments for concrete script constructor (forwarded using perfect forwarding) * * \returns Reference to BehaviorScript component (`*this`) */ - template <class T> - BehaviorScript & set_script(); + template <class T, typename... Args> + BehaviorScript & set_script(Args &&... args); protected: //! Script instance |