示例#1
0
文件: Table.cs 项目: HarryCU/QwLua
 public Table(ScriptState luaState, int index)
 {
     _luaState     = luaState;
     _index        = LuaCore.GetRef(_luaState, index);
     _readTableWay = ReadTableWay.ByName;
     Refresh();
 }
示例#2
0
文件: Table.cs 项目: HarryCU/QwLua
 public Table(ScriptState luaState, string tableName)
 {
     _luaState     = luaState;
     _index        = LuaCore.GetGlobalRef(_luaState, tableName, ScriptTypes.Table);
     _readTableWay = ReadTableWay.ByName;
     Refresh();
 }