diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-28 00:57:57 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-08-28 00:57:57 -0400 |
commit | 85fb2bff38b2ef6cb17e86c5f602ee09a365b117 (patch) | |
tree | a8066d33233ec9b6a2b9bb281a1de040ab96be7b /src/Script/entityx | |
parent | 787393dd86d6c37b5680847dd4eef14406a86687 (diff) |
Added LuaBridge support
Diffstat (limited to 'src/Script/entityx')
-rw-r--r-- | src/Script/entityx/EntityLua.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Script/entityx/EntityLua.hpp b/src/Script/entityx/EntityLua.hpp index c957252..780f051 100644 --- a/src/Script/entityx/EntityLua.hpp +++ b/src/Script/entityx/EntityLua.hpp @@ -48,7 +48,7 @@ namespace entityx // Now the ComponentHandler should be at #-2 of stack (-1 is the metatable), this will be used as up-values lua_pushvalue(L, -2); // Also remember the offset - int offset = ComponentHelper<C>::offset(ptr); + int offset = typename ComponentHelper<C>::offset(ptr); lua_pushinteger(L, offset); lua_pushcclosure(L, [](lua_State* L){ // This function is used as both getter and setter: |