diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-28 10:13:11 +0100 | 
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-28 10:13:11 +0100 | 
| commit | 6fd7cec7d4bbf5aeb361b3f1337671bb0f9af61b (patch) | |
| tree | 01f6977c66a1e07e07aae42358a7e1a4e55ef53c /src/crepe/api/BehaviorScript.hpp | |
| parent | d1eed940b8119e95a14f1d08bf26184c7f0a0d8f (diff) | |
manager mediator refactor
Diffstat (limited to 'src/crepe/api/BehaviorScript.hpp')
| -rw-r--r-- | src/crepe/api/BehaviorScript.hpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/crepe/api/BehaviorScript.hpp b/src/crepe/api/BehaviorScript.hpp index bd59337..6de0157 100644 --- a/src/crepe/api/BehaviorScript.hpp +++ b/src/crepe/api/BehaviorScript.hpp @@ -14,11 +14,11 @@ BehaviorScript & BehaviorScript::set_script(Args &&... args) {  	dbg_trace();  	static_assert(std::is_base_of<Script, T>::value);  	Script * s = new T(std::forward<Args>(args)...); +	Mediator & mediator = this->mediator;  	s->game_object_id = this->game_object_id;  	s->active = this->active; -	s->component_manager = this->component_manager; -	s->event_manager = EventManager::get_instance(); +	s->mediator = mediator;  	this->script = std::unique_ptr<Script>(s);  	return *this; |