From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Assets/Scripts/XMainClient/KKSG/PVPResult.cs | 214 +++++++++++++++++++++ 1 file changed, 214 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/PVPResult.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/PVPResult.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/PVPResult.cs b/Client/Assets/Scripts/XMainClient/KKSG/PVPResult.cs new file mode 100644 index 00000000..40d60758 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/PVPResult.cs @@ -0,0 +1,214 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "PVPResult")] + [Serializable] + public class PVPResult : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "mygroup", DataFormat = DataFormat.TwosComplement)] + public int mygroup + { + get + { + return this._mygroup ?? 0; + } + set + { + this._mygroup = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool mygroupSpecified + { + get + { + return this._mygroup != null; + } + set + { + bool flag = value == (this._mygroup == null); + if (flag) + { + this._mygroup = (value ? new int?(this.mygroup) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "wingroup", DataFormat = DataFormat.TwosComplement)] + public int wingroup + { + get + { + return this._wingroup ?? 0; + } + set + { + this._wingroup = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool wingroupSpecified + { + get + { + return this._wingroup != null; + } + set + { + bool flag = value == (this._wingroup == null); + if (flag) + { + this._wingroup = (value ? new int?(this.wingroup) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "killleadercount", DataFormat = DataFormat.TwosComplement)] + public int killleadercount + { + get + { + return this._killleadercount ?? 0; + } + set + { + this._killleadercount = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool killleadercountSpecified + { + get + { + return this._killleadercount != null; + } + set + { + bool flag = value == (this._killleadercount == null); + if (flag) + { + this._killleadercount = (value ? new int?(this.killleadercount) : null); + } + } + } + + [ProtoMember(4, IsRequired = false, Name = "ismvp", DataFormat = DataFormat.Default)] + public bool ismvp + { + get + { + return this._ismvp ?? false; + } + set + { + this._ismvp = new bool?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool ismvpSpecified + { + get + { + return this._ismvp != null; + } + set + { + bool flag = value == (this._ismvp == null); + if (flag) + { + this._ismvp = (value ? new bool?(this.ismvp) : null); + } + } + } + + [ProtoMember(5, Name = "dayjoinreward", DataFormat = DataFormat.Default)] + public List dayjoinreward + { + get + { + return this._dayjoinreward; + } + } + + [ProtoMember(6, Name = "winreward", DataFormat = DataFormat.Default)] + public List winreward + { + get + { + return this._winreward; + } + } + + private int? _mygroup; + + private int? _wingroup; + + private int? _killleadercount; + + private bool? _ismvp; + + private readonly List _dayjoinreward = new List(); + + private readonly List _winreward = new List(); + + private IExtension extensionObject; + + private bool ShouldSerializemygroup() + { + return this.mygroupSpecified; + } + + private void Resetmygroup() + { + this.mygroupSpecified = false; + } + + private bool ShouldSerializewingroup() + { + return this.wingroupSpecified; + } + + private void Resetwingroup() + { + this.wingroupSpecified = false; + } + + private bool ShouldSerializekillleadercount() + { + return this.killleadercountSpecified; + } + + private void Resetkillleadercount() + { + this.killleadercountSpecified = false; + } + + private bool ShouldSerializeismvp() + { + return this.ismvpSpecified; + } + + private void Resetismvp() + { + this.ismvpSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0