diff options
| author | max-001 <maxsmits21@kpnmail.nl> | 2024-11-24 11:50:16 +0100 | 
|---|---|---|
| committer | max-001 <maxsmits21@kpnmail.nl> | 2024-11-24 11:50:16 +0100 | 
| commit | 5f710fedcbbf43f65e0ef1241f22e06d42cf79b9 (patch) | |
| tree | 2c97cd0a635632d5a32788ae6c9f4a99c7c4e95d /src/crepe/api/Script.cpp | |
| parent | 2052988dba049cfa2032d01ff9e6f7bb53d084fe (diff) | |
| parent | 1499363d85abedbdb571e33801b821f4dfabc638 (diff) | |
Merge remote-tracking branch 'origin/master' into max/scenes
Diffstat (limited to 'src/crepe/api/Script.cpp')
| -rw-r--r-- | src/crepe/api/Script.cpp | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/src/crepe/api/Script.cpp b/src/crepe/api/Script.cpp new file mode 100644 index 0000000..fcbe4c7 --- /dev/null +++ b/src/crepe/api/Script.cpp @@ -0,0 +1,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); +} |