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

using namespace crepe;

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