ReadBigInt32() public method

public ReadBigInt32 ( ) : int
return int
コード例 #1
0
ファイル: GMD.cs プロジェクト: joeriedel/DarkForcesUnity
 bool SkipChunk(ByteStream stream)
 {
     stream.Skip(4);
     int length = stream.ReadBigInt32();
     stream.Skip(length);
     return !stream.EOS;
 }