From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../XMainClient/KKSG/MobaBattleOneGameRole.cs | 406 +++++++++++++++++++++ 1 file changed, 406 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/MobaBattleOneGameRole.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/MobaBattleOneGameRole.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/MobaBattleOneGameRole.cs b/Client/Assets/Scripts/XMainClient/KKSG/MobaBattleOneGameRole.cs new file mode 100644 index 00000000..0a0d5838 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/MobaBattleOneGameRole.cs @@ -0,0 +1,406 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "MobaBattleOneGameRole")] + [Serializable] + public class MobaBattleOneGameRole : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "roleid", DataFormat = DataFormat.TwosComplement)] + public ulong roleid + { + get + { + return this._roleid ?? 0UL; + } + set + { + this._roleid = new ulong?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool roleidSpecified + { + get + { + return this._roleid != null; + } + set + { + bool flag = value == (this._roleid == null); + if (flag) + { + this._roleid = (value ? new ulong?(this.roleid) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "name", DataFormat = DataFormat.Default)] + public string name + { + get + { + return this._name ?? ""; + } + set + { + this._name = value; + } + } + + [XmlIgnore] + [Browsable(false)] + public bool nameSpecified + { + get + { + return this._name != null; + } + set + { + bool flag = value == (this._name == null); + if (flag) + { + this._name = (value ? this.name : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "heroid", DataFormat = DataFormat.TwosComplement)] + public uint heroid + { + get + { + return this._heroid ?? 0u; + } + set + { + this._heroid = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool heroidSpecified + { + get + { + return this._heroid != null; + } + set + { + bool flag = value == (this._heroid == null); + if (flag) + { + this._heroid = (value ? new uint?(this.heroid) : null); + } + } + } + + [ProtoMember(4, IsRequired = false, Name = "killcount", DataFormat = DataFormat.TwosComplement)] + public uint killcount + { + get + { + return this._killcount ?? 0u; + } + set + { + this._killcount = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool killcountSpecified + { + get + { + return this._killcount != null; + } + set + { + bool flag = value == (this._killcount == null); + if (flag) + { + this._killcount = (value ? new uint?(this.killcount) : null); + } + } + } + + [ProtoMember(5, IsRequired = false, Name = "deathcount", DataFormat = DataFormat.TwosComplement)] + public uint deathcount + { + get + { + return this._deathcount ?? 0u; + } + set + { + this._deathcount = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool deathcountSpecified + { + get + { + return this._deathcount != null; + } + set + { + bool flag = value == (this._deathcount == null); + if (flag) + { + this._deathcount = (value ? new uint?(this.deathcount) : null); + } + } + } + + [ProtoMember(6, IsRequired = false, Name = "assistcount", DataFormat = DataFormat.TwosComplement)] + public uint assistcount + { + get + { + return this._assistcount ?? 0u; + } + set + { + this._assistcount = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool assistcountSpecified + { + get + { + return this._assistcount != null; + } + set + { + bool flag = value == (this._assistcount == null); + if (flag) + { + this._assistcount = (value ? new uint?(this.assistcount) : null); + } + } + } + + [ProtoMember(7, IsRequired = false, Name = "multikillcount", DataFormat = DataFormat.TwosComplement)] + public uint multikillcount + { + get + { + return this._multikillcount ?? 0u; + } + set + { + this._multikillcount = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool multikillcountSpecified + { + get + { + return this._multikillcount != null; + } + set + { + bool flag = value == (this._multikillcount == null); + if (flag) + { + this._multikillcount = (value ? new uint?(this.multikillcount) : null); + } + } + } + + [ProtoMember(8, IsRequired = false, Name = "kda", DataFormat = DataFormat.FixedSize)] + public float kda + { + get + { + return this._kda ?? 0f; + } + set + { + this._kda = new float?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool kdaSpecified + { + get + { + return this._kda != null; + } + set + { + bool flag = value == (this._kda == null); + if (flag) + { + this._kda = (value ? new float?(this.kda) : null); + } + } + } + + [ProtoMember(9, IsRequired = false, Name = "isescape", DataFormat = DataFormat.Default)] + public bool isescape + { + get + { + return this._isescape ?? false; + } + set + { + this._isescape = new bool?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool isescapeSpecified + { + get + { + return this._isescape != null; + } + set + { + bool flag = value == (this._isescape == null); + if (flag) + { + this._isescape = (value ? new bool?(this.isescape) : null); + } + } + } + + private ulong? _roleid; + + private string _name; + + private uint? _heroid; + + private uint? _killcount; + + private uint? _deathcount; + + private uint? _assistcount; + + private uint? _multikillcount; + + private float? _kda; + + private bool? _isescape; + + private IExtension extensionObject; + + private bool ShouldSerializeroleid() + { + return this.roleidSpecified; + } + + private void Resetroleid() + { + this.roleidSpecified = false; + } + + private bool ShouldSerializename() + { + return this.nameSpecified; + } + + private void Resetname() + { + this.nameSpecified = false; + } + + private bool ShouldSerializeheroid() + { + return this.heroidSpecified; + } + + private void Resetheroid() + { + this.heroidSpecified = false; + } + + private bool ShouldSerializekillcount() + { + return this.killcountSpecified; + } + + private void Resetkillcount() + { + this.killcountSpecified = false; + } + + private bool ShouldSerializedeathcount() + { + return this.deathcountSpecified; + } + + private void Resetdeathcount() + { + this.deathcountSpecified = false; + } + + private bool ShouldSerializeassistcount() + { + return this.assistcountSpecified; + } + + private void Resetassistcount() + { + this.assistcountSpecified = false; + } + + private bool ShouldSerializemultikillcount() + { + return this.multikillcountSpecified; + } + + private void Resetmultikillcount() + { + this.multikillcountSpecified = false; + } + + private bool ShouldSerializekda() + { + return this.kdaSpecified; + } + + private void Resetkda() + { + this.kdaSpecified = false; + } + + private bool ShouldSerializeisescape() + { + return this.isescapeSpecified; + } + + private void Resetisescape() + { + this.isescapeSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0