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/GoalAwardsValue.cs | 105 +++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/GoalAwardsValue.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/GoalAwardsValue.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/GoalAwardsValue.cs b/Client/Assets/Scripts/XMainClient/KKSG/GoalAwardsValue.cs new file mode 100644 index 00000000..6d1dd1bd --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/GoalAwardsValue.cs @@ -0,0 +1,105 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "GoalAwardsValue")] + [Serializable] + public class GoalAwardsValue : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "gkid", DataFormat = DataFormat.TwosComplement)] + public uint gkid + { + get + { + return this._gkid ?? 0u; + } + set + { + this._gkid = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool gkidSpecified + { + get + { + return this._gkid != null; + } + set + { + bool flag = value == (this._gkid == null); + if (flag) + { + this._gkid = (value ? new uint?(this.gkid) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "gkvalue", DataFormat = DataFormat.TwosComplement)] + public double gkvalue + { + get + { + return this._gkvalue ?? 0.0; + } + set + { + this._gkvalue = new double?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool gkvalueSpecified + { + get + { + return this._gkvalue != null; + } + set + { + bool flag = value == (this._gkvalue == null); + if (flag) + { + this._gkvalue = (value ? new double?(this.gkvalue) : null); + } + } + } + + private uint? _gkid; + + private double? _gkvalue; + + private IExtension extensionObject; + + private bool ShouldSerializegkid() + { + return this.gkidSpecified; + } + + private void Resetgkid() + { + this.gkidSpecified = false; + } + + private bool ShouldSerializegkvalue() + { + return this.gkvalueSpecified; + } + + private void Resetgkvalue() + { + this.gkvalueSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0