blob: 0401c0d32ce33c6e5b251965a5b018c8b12417af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#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();
this->script = new T();
return *this;
}
}
|