diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-10-01 20:50:41 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-10-01 20:50:41 -0400 |
commit | 9b81db1fe44bf13d215cf2700495f2a8710a8ade (patch) | |
tree | 17a406810f13cf271fe34c41006454cb81b55c1d /src/script.hpp | |
parent | af39f2e08b0503db723ae707a5c7278d8c85f812 (diff) | |
parent | ad5a63db312d0029109e6ca0051feaa516419ad2 (diff) |
Merge branch 'master' of https://github.com/tcsullivan/gamedev2 into audio
Diffstat (limited to 'src/script.hpp')
-rw-r--r-- | src/script.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/script.hpp b/src/script.hpp index 0ac9e63..24cc142 100644 --- a/src/script.hpp +++ b/src/script.hpp @@ -26,6 +26,21 @@ #include "world.hpp" +/** + * Utility for pairing class instances to their member function calls. + * This is useful for adding functions to the Lua game namespace. + * + * @param func The member function to call + * @param instance The instance to bind to + * @return A function that calls the member function using the given instance + */ +template<class C, typename R, typename... Args> +auto bindInstance(R (C::* func)(Args...), C *instance) +{ + return [instance, func](Args... args) { (instance->*func)(args...); }; +} + + struct EntitySpawnEvent { sol::object ref; |