public byte[] ToProtoBytes()
 {
     return(PlayerUpdateLoot.SerializeToBytes(this));
 }
 public static void SerializeLengthDelimited(Stream stream, PlayerUpdateLoot instance)
 {
     byte[] bytes = PlayerUpdateLoot.SerializeToBytes(instance);
     ProtocolParser.WriteUInt32(stream, (uint)bytes.Length);
     stream.Write(bytes, 0, (int)bytes.Length);
 }