diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-20 22:49:04 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-20 22:49:04 +0100 |
commit | 9a5967006c4b8cd202142517b402b4c75dc8b90b (patch) | |
tree | bafe2656cfd686a7ca6f6e6023f2d437ff437e7e /src/crepe/api/Script.cpp | |
parent | 48f69cedaf16038d980071d43d32e22caae44c17 (diff) |
add Script::subscribe with specialization for CollisionEvent
Diffstat (limited to 'src/crepe/api/Script.cpp')
-rw-r--r-- | src/crepe/api/Script.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/crepe/api/Script.cpp b/src/crepe/api/Script.cpp index 9ebb074..bac5ab2 100644 --- a/src/crepe/api/Script.cpp +++ b/src/crepe/api/Script.cpp @@ -9,3 +9,7 @@ Script::~Script() { } } +template <> +void Script::subscribe(const EventHandler<CollisionEvent> & callback) { + this->subscribe_internal(callback, this->game_object_id); +} |