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

using namespace crepe;

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

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