コード例 #1
0
ファイル: LuaByteArray.cs プロジェクト: shiqi7350/Tetris
 static public int ReadUInt(IntPtr l)
 {
     try {
         SLua.ByteArray self = (SLua.ByteArray)checkSelf(l);
         var            ret  = self.ReadUInt();
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }