예제 #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
 internal ScriptFunction(ScriptState luaState, int reference)
 {
     _reference = LuaCore.GetRef(luaState, reference);
     _luaState  = luaState;
 }