コード例 #1
0
ファイル: LuaTable.cs プロジェクト: zhangf911/tolua
 public bool MoveNext()
 {
     current = state.RawGetI(-1, index);
     state.LuaPop(1);
     ++index;
     return current == null ? false : true;
 }