Ejemplo n.º 1
0
 public PackedStream2(int style, Stream stream)
     : base(style, stream)
 {
     State            = null;
     M10              = 0U;
     TransportVersion = 5;
 }
Ejemplo n.º 2
0
 public PackedStream2(int style, byte[] data)
     : base(style, new MemoryStream(data))
 {
     State            = null;
     M10              = 0U;
     TransportVersion = 5;
 }
Ejemplo n.º 3
0
 public SerializeStateBase(PackedStream2 stream, HeroTypes heroType)
 {
     HeroType     = heroType;
     Next         = null;
     Stream       = stream;
     m_0C         = 0U;
     Count        = 0U;
     Next         = stream.State;
     stream.State = this;
 }