blob: d3fae07a70daef83838664af3c847305df891846 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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);
}
|