Exemplo n.º 1
0
 public void GetGlobal(string name)
 {
     LuaAPI.lua_getfield(this.m_lua, LuaAPI.LUA_GLOBALSINDEX, name);
 }
Exemplo n.º 2
0
 public void GetField(int index, string key)
 {
     LuaAPI.lua_getfield(this.m_lua, index, key);
 }