diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-11-22 14:42:29 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-11-22 14:42:29 +0100 |
commit | 90f793932e40b2e1328c513a91830acb1a720f26 (patch) | |
tree | df0abeb829de1b9c3387de133eb111e0dbd0534a /src/crepe/api/Script.cpp | |
parent | a11b647bec22890be44d68d15de6b73f8955722d (diff) | |
parent | 7e2a5ee035524fff798d8f480e56aeca6b775f90 (diff) |
Merge remote-tracking branch 'origin/master' into max/vector2
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); +} |