diff options
Diffstat (limited to 'src/components')
-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 {} |