diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-08 03:03:16 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-08 03:03:16 -0400 |
commit | a422f32613441b5313e4a3bb0fab61f8cb87914c (patch) | |
tree | 0a6c8f17e6a8df0b6c377813fa700064f68ced93 /src/script.hpp | |
parent | 5f53889d4357d8dba6e726ed38358eca96dbeb47 (diff) | |
parent | 5b1c22529a946a782a8376de2b34c28348d078d1 (diff) |
Using polymorphism for world layer storage now, and added demo backdrops
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; |