aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Script.cpp
blob: 0e7384882dac34ec9ae152b34989dd37e61e0b56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "Script.h"

using namespace crepe;

Script::~Script() {
	EventManager & evmgr = *this->event_manager_ref;
	for (auto id : this->listeners) {
		evmgr.unsubscribe(id);
	}
}

template <>
void Script::subscribe(const EventHandler<CollisionEvent> & callback) {
	const game_object_id_t & game_object_id = *this->game_object_id_ref;
	this->subscribe_internal(callback, game_object_id);
}