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