diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-05-09 09:42:18 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-05-09 09:42:18 -0400 |
commit | da0913771538fd9b1ca538615fd9aa0388608466 (patch) | |
tree | 18b23720b0a9c24e05a8f3eceb6b03b0b858fcb2 /src/components/EventListener.hpp | |
parent | f461087223a80cd06619517e355690654f406d63 (diff) |
Merge audio; handle mouse events
Diffstat (limited to 'src/components/EventListener.hpp')
-rw-r--r-- | src/components/EventListener.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/EventListener.hpp b/src/components/EventListener.hpp index 77a004e..c39b6ad 100644 --- a/src/components/EventListener.hpp +++ b/src/components/EventListener.hpp @@ -42,10 +42,11 @@ public: return *this; } - void tryListener(const std::string& name, sol::table& self) + template<typename... Args> + void tryListener(const std::string& name, sol::table& self, Args... args) { if (listeners[name] == sol::type::function) - listeners[name](self); + listeners[name](self, args...); } void serialize([[maybe_unused]] cereal::JSONOutputArchive& ar) final {} |