aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/BehaviorScript.hpp
blob: 353d5e2d8452dfcfb42e9ab337ce581d2234dc69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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