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/PvpBattleEndData.cs | 148 +++++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/PvpBattleEndData.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/PvpBattleEndData.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/PvpBattleEndData.cs b/Client/Assets/Scripts/XMainClient/KKSG/PvpBattleEndData.cs new file mode 100644 index 00000000..19c579c3 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/PvpBattleEndData.cs @@ -0,0 +1,148 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "PvpBattleEndData")] + [Serializable] + public class PvpBattleEndData : IExtensible + { + [ProtoMember(1, 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(2, IsRequired = false, Name = "isAllEnd", DataFormat = DataFormat.Default)] + public bool isAllEnd + { + get + { + return this._isAllEnd ?? false; + } + set + { + this._isAllEnd = new bool?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool isAllEndSpecified + { + get + { + return this._isAllEnd != null; + } + set + { + bool flag = value == (this._isAllEnd == null); + if (flag) + { + this._isAllEnd = (value ? new bool?(this.isAllEnd) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "reason", DataFormat = DataFormat.TwosComplement)] + public PVP_ONEGAMEEND_REASON reason + { + get + { + return this._reason ?? PVP_ONEGAMEEND_REASON.PVP_OGE_LEADER_DIE; + } + set + { + this._reason = new PVP_ONEGAMEEND_REASON?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool reasonSpecified + { + get + { + return this._reason != null; + } + set + { + bool flag = value == (this._reason == null); + if (flag) + { + this._reason = (value ? new PVP_ONEGAMEEND_REASON?(this.reason) : null); + } + } + } + + private int? _wingroup; + + private bool? _isAllEnd; + + private PVP_ONEGAMEEND_REASON? _reason; + + private IExtension extensionObject; + + private bool ShouldSerializewingroup() + { + return this.wingroupSpecified; + } + + private void Resetwingroup() + { + this.wingroupSpecified = false; + } + + private bool ShouldSerializeisAllEnd() + { + return this.isAllEndSpecified; + } + + private void ResetisAllEnd() + { + this.isAllEndSpecified = false; + } + + private bool ShouldSerializereason() + { + return this.reasonSpecified; + } + + private void Resetreason() + { + this.reasonSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0