diff options
Diffstat (limited to 'src/crepe/api/BehaviorScript.hpp')
-rw-r--r-- | src/crepe/api/BehaviorScript.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/crepe/api/BehaviorScript.hpp b/src/crepe/api/BehaviorScript.hpp new file mode 100644 index 0000000..353d5e2 --- /dev/null +++ b/src/crepe/api/BehaviorScript.hpp @@ -0,0 +1,22 @@ +#pragma once + +#include <type_traits> + +#include "BehaviorScript.h" +#include "Script.h" + +namespace crepe { + +template <class T, typename... Args> +BehaviorScript & BehaviorScript::set_script(Args &&... args) { + static_assert(std::is_base_of<Script, T>::value); + this->script = std::unique_ptr<Script>(new T(std::forward<Args>(args)...)); + + this->script->game_object_id = this->game_object_id; + this->script->active = this->active; + this->script->mediator = this->mediator; + + return *this; +} + +} // namespace crepe |