blob: 2bed1b77e79af5c3a0295f7b8a6e096eb6d3ee02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#pragma once
#include <type_traits>
#include "../util/log.h"
#include "BehaviorScript.h"
#include "Script.h"
namespace crepe {
template <class T>
BehaviorScript & BehaviorScript::set_script() {
dbg_trace();
static_assert(std::is_base_of<Script, T>::value);
Script * s = new T();
s->parent_ref = this;
s->component_manager_ref = &this->component_manager;
this->script = std::unique_ptr<Script>(s);
return *this;
}
} // namespace crepe
|