aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Script.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 22:49:04 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 22:49:04 +0100
commit9a5967006c4b8cd202142517b402b4c75dc8b90b (patch)
treebafe2656cfd686a7ca6f6e6023f2d437ff437e7e /src/crepe/api/Script.cpp
parent48f69cedaf16038d980071d43d32e22caae44c17 (diff)
add Script::subscribe with specialization for CollisionEvent
Diffstat (limited to 'src/crepe/api/Script.cpp')
-rw-r--r--src/crepe/api/Script.cpp4
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);
+}