Ejemplo n.º 1
0
 private void createIndexingMetaFunction(IntPtr luaState)
 {
     LuaAPI.lua_pushstring(luaState, "luaNet_indexfunction");
     LuaAPI.luaL_dostring(luaState, MetaFunctions.luaIndexFunction);
     //LuaAPI.lua_pushstdcallcfunction(luaState,indexFunction);
     LuaAPI.lua_rawset(luaState, LuaAPI.LUA_REGISTRYINDEX);
 }