Example #1
0
File: Zone.cs Project: a-kr/jsyoda
 private void ReadIzaStuff(YodaReader stream)
 {
     //stream.ReadUntil("IZAX");
     stream.ExpectAtCurrentPos("IZAX");
     this.ReadIzax(stream);
     stream.ExpectAtCurrentPos("IZX2");
     //IZAXTail = stream.ReadUntil("IZX2").Bytes;
     IZX2 = stream.ReadUntil("IZX3").Bytes;
     IZX3 = stream.ReadUntil("IZX4").Bytes;
     IZX4 = stream.ReadUntil("IACT", "IZON", "PUZ2").Bytes;
 }