diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-10-22 12:15:49 +0200 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-10-22 12:15:49 +0200 |
commit | 6b213f304b35be5c11bbea305698d6e365a7ffca (patch) | |
tree | 4526831be8e6a09a9e1608b71294213ce57fddb1 /src/crepe/api/BehaviorScript.hpp | |
parent | 9037aca03bfa4312794a6954752628381256f777 (diff) | |
parent | 30d84ef9ad4a0010288db18294766fd4d5ed6f4a (diff) |
Merge branch 'master' into niels/rendering
Diffstat (limited to 'src/crepe/api/BehaviorScript.hpp')
-rw-r--r-- | src/crepe/api/BehaviorScript.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/crepe/api/BehaviorScript.hpp b/src/crepe/api/BehaviorScript.hpp new file mode 100644 index 0000000..a6bd81c --- /dev/null +++ b/src/crepe/api/BehaviorScript.hpp @@ -0,0 +1,19 @@ +#pragma once + +#include <type_traits> + +#include "../util/log.h" +#include "BehaviorScript.h" + +namespace crepe::api { + +template <class T> +BehaviorScript & BehaviorScript::set_script() { + static_assert(std::is_base_of<Script, T>::value); + dbg_trace(); + Script * s = new T(); + this->script = std::unique_ptr<Script>(s); + return *this; +} + +} // namespace crepe::api |