using System; using System.IO; using KKSG; using ProtoBuf; namespace XMainClient { internal class PtcC2G_ChangeSupplementReport : Protocol { public ChangeSupplementReport Data = new ChangeSupplementReport(); public override uint GetProtoType() { return 42193u; } public override void Serialize(MemoryStream stream) { Serializer.Serialize(stream, this.Data); } public override void DeSerialize(MemoryStream stream) { this.Data = Serializer.Deserialize(stream); } public override void Process() { throw new Exception("Send only protocol can not call process"); } } }