From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Scripts/XMainClient/KKSG/DragonExpResult.cs | 214 +++++++++++++++++++++ 1 file changed, 214 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/DragonExpResult.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/DragonExpResult.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/DragonExpResult.cs b/Client/Assets/Scripts/XMainClient/KKSG/DragonExpResult.cs new file mode 100644 index 00000000..ba91b9a9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/DragonExpResult.cs @@ -0,0 +1,214 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "DragonExpResult")] + [Serializable] + public class DragonExpResult : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "iswin", DataFormat = DataFormat.Default)] + public bool iswin + { + get + { + return this._iswin ?? false; + } + set + { + this._iswin = new bool?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool iswinSpecified + { + get + { + return this._iswin != null; + } + set + { + bool flag = value == (this._iswin == null); + if (flag) + { + this._iswin = (value ? new bool?(this.iswin) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "bosshurthp", DataFormat = DataFormat.TwosComplement)] + public int bosshurthp + { + get + { + return this._bosshurthp ?? 0; + } + set + { + this._bosshurthp = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool bosshurthpSpecified + { + get + { + return this._bosshurthp != null; + } + set + { + bool flag = value == (this._bosshurthp == null); + if (flag) + { + this._bosshurthp = (value ? new int?(this.bosshurthp) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "bosslefthp", DataFormat = DataFormat.TwosComplement)] + public int bosslefthp + { + get + { + return this._bosslefthp ?? 0; + } + set + { + this._bosslefthp = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool bosslefthpSpecified + { + get + { + return this._bosslefthp != null; + } + set + { + bool flag = value == (this._bosslefthp == null); + if (flag) + { + this._bosslefthp = (value ? new int?(this.bosslefthp) : null); + } + } + } + + [ProtoMember(4, Name = "joinreward", DataFormat = DataFormat.Default)] + public List joinreward + { + get + { + return this._joinreward; + } + } + + [ProtoMember(5, Name = "winreward", DataFormat = DataFormat.Default)] + public List winreward + { + get + { + return this._winreward; + } + } + + [ProtoMember(6, IsRequired = false, Name = "sceneid", DataFormat = DataFormat.TwosComplement)] + public uint sceneid + { + get + { + return this._sceneid ?? 0u; + } + set + { + this._sceneid = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool sceneidSpecified + { + get + { + return this._sceneid != null; + } + set + { + bool flag = value == (this._sceneid == null); + if (flag) + { + this._sceneid = (value ? new uint?(this.sceneid) : null); + } + } + } + + private bool? _iswin; + + private int? _bosshurthp; + + private int? _bosslefthp; + + private readonly List _joinreward = new List(); + + private readonly List _winreward = new List(); + + private uint? _sceneid; + + private IExtension extensionObject; + + private bool ShouldSerializeiswin() + { + return this.iswinSpecified; + } + + private void Resetiswin() + { + this.iswinSpecified = false; + } + + private bool ShouldSerializebosshurthp() + { + return this.bosshurthpSpecified; + } + + private void Resetbosshurthp() + { + this.bosshurthpSpecified = false; + } + + private bool ShouldSerializebosslefthp() + { + return this.bosslefthpSpecified; + } + + private void Resetbosslefthp() + { + this.bosslefthpSpecified = false; + } + + private bool ShouldSerializesceneid() + { + return this.sceneidSpecified; + } + + private void Resetsceneid() + { + this.sceneidSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0