aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BehaviorScript.hpp
diff options
context:
space:
mode:
authorjaroWMR <jarorutjes07@gmail.com>2024-10-23 12:32:06 +0200
committerjaroWMR <jarorutjes07@gmail.com>2024-10-23 12:32:06 +0200
commit96da34c1f973525ee57b71ea031d11a966903150 (patch)
treef02d9e743ae852715397bd406b54f5de5fa5d29f /src/crepe/api/BehaviorScript.hpp
parentcead795b7ff7135e13caf9ad3b76628070391458 (diff)
parent30d84ef9ad4a0010288db18294766fd4d5ed6f4a (diff)
merged with master
Diffstat (limited to 'src/crepe/api/BehaviorScript.hpp')
-rw-r--r--src/crepe/api/BehaviorScript.hpp19
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