Example #1
0
 public void ReadPacket(MinecraftStream stream)
 {
     ChunkX = stream.ReadInt32();
     ChunkZ = stream.ReadInt32();
     RecordCount = stream.ReadInt16();
     stream.ReadInt32();
     Data = stream.ReadInt32Array(RecordCount);
 }
Example #2
0
 public void ReadPacket(MinecraftStream stream)
 {
     var length = stream.ReadUInt8();
     EntityIds = stream.ReadInt32Array(length);
 }