From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../XMainClient/KKSG/ChangeRiskBoxStateArg.cs | 148 +++++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/ChangeRiskBoxStateArg.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/ChangeRiskBoxStateArg.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/ChangeRiskBoxStateArg.cs b/Client/Assets/Scripts/XMainClient/KKSG/ChangeRiskBoxStateArg.cs new file mode 100644 index 00000000..8780d486 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/ChangeRiskBoxStateArg.cs @@ -0,0 +1,148 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "ChangeRiskBoxStateArg")] + [Serializable] + public class ChangeRiskBoxStateArg : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "destState", DataFormat = DataFormat.TwosComplement)] + public RiskBoxState destState + { + get + { + return this._destState ?? RiskBoxState.RISK_BOX_LOCKED; + } + set + { + this._destState = new RiskBoxState?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool destStateSpecified + { + get + { + return this._destState != null; + } + set + { + bool flag = value == (this._destState == null); + if (flag) + { + this._destState = (value ? new RiskBoxState?(this.destState) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "slot", DataFormat = DataFormat.TwosComplement)] + public int slot + { + get + { + return this._slot ?? 0; + } + set + { + this._slot = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool slotSpecified + { + get + { + return this._slot != null; + } + set + { + bool flag = value == (this._slot == null); + if (flag) + { + this._slot = (value ? new int?(this.slot) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "mapID", DataFormat = DataFormat.TwosComplement)] + public int mapID + { + get + { + return this._mapID ?? 0; + } + set + { + this._mapID = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool mapIDSpecified + { + get + { + return this._mapID != null; + } + set + { + bool flag = value == (this._mapID == null); + if (flag) + { + this._mapID = (value ? new int?(this.mapID) : null); + } + } + } + + private RiskBoxState? _destState; + + private int? _slot; + + private int? _mapID; + + private IExtension extensionObject; + + private bool ShouldSerializedestState() + { + return this.destStateSpecified; + } + + private void ResetdestState() + { + this.destStateSpecified = false; + } + + private bool ShouldSerializeslot() + { + return this.slotSpecified; + } + + private void Resetslot() + { + this.slotSpecified = false; + } + + private bool ShouldSerializemapID() + { + return this.mapIDSpecified; + } + + private void ResetmapID() + { + this.mapIDSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0