using System; using System.IO; using KKSG; using ProtoBuf; namespace XMainClient { internal class RpcC2M_GoalAwardsGetList : Rpc { public GoalAwardsGetList_C2M oArg = new GoalAwardsGetList_C2M(); public GoalAwardsGetList_M2C oRes = null; public override uint GetRpcType() { return 36694u; } public override void Serialize(MemoryStream stream) { Serializer.Serialize(stream, this.oArg); } public override void DeSerialize(MemoryStream stream) { this.oRes = Serializer.Deserialize(stream); } public override void Process() { base.Process(); Process_RpcC2M_GoalAwardsGetList.OnReply(this.oArg, this.oRes); } public override void OnTimeout(object args) { Process_RpcC2M_GoalAwardsGetList.OnTimeout(this.oArg); } } }