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/GoldClickRes.cs | 289 +++++++++++++++++++++ 1 file changed, 289 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/GoldClickRes.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/GoldClickRes.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/GoldClickRes.cs b/Client/Assets/Scripts/XMainClient/KKSG/GoldClickRes.cs new file mode 100644 index 00000000..e24d9ae8 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/GoldClickRes.cs @@ -0,0 +1,289 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "GoldClickRes")] + [Serializable] + public class GoldClickRes : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "errorcode", DataFormat = DataFormat.TwosComplement)] + public ErrorCode errorcode + { + get + { + return this._errorcode ?? ErrorCode.ERR_SUCCESS; + } + set + { + this._errorcode = new ErrorCode?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool errorcodeSpecified + { + get + { + return this._errorcode != null; + } + set + { + bool flag = value == (this._errorcode == null); + if (flag) + { + this._errorcode = (value ? new ErrorCode?(this.errorcode) : null); + } + } + } + + [ProtoMember(2, Name = "results", DataFormat = DataFormat.TwosComplement)] + public List results + { + get + { + return this._results; + } + } + + [ProtoMember(3, IsRequired = false, Name = "freetimeleft", DataFormat = DataFormat.TwosComplement)] + public uint freetimeleft + { + get + { + return this._freetimeleft ?? 0u; + } + set + { + this._freetimeleft = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool freetimeleftSpecified + { + get + { + return this._freetimeleft != null; + } + set + { + bool flag = value == (this._freetimeleft == null); + if (flag) + { + this._freetimeleft = (value ? new uint?(this.freetimeleft) : null); + } + } + } + + [ProtoMember(4, IsRequired = false, Name = "freecount", DataFormat = DataFormat.TwosComplement)] + public uint freecount + { + get + { + return this._freecount ?? 0u; + } + set + { + this._freecount = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool freecountSpecified + { + get + { + return this._freecount != null; + } + set + { + bool flag = value == (this._freecount == null); + if (flag) + { + this._freecount = (value ? new uint?(this.freecount) : null); + } + } + } + + [ProtoMember(5, IsRequired = false, Name = "freeallcount", DataFormat = DataFormat.TwosComplement)] + public uint freeallcount + { + get + { + return this._freeallcount ?? 0u; + } + set + { + this._freeallcount = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool freeallcountSpecified + { + get + { + return this._freeallcount != null; + } + set + { + bool flag = value == (this._freeallcount == null); + if (flag) + { + this._freeallcount = (value ? new uint?(this.freeallcount) : null); + } + } + } + + [ProtoMember(6, IsRequired = false, Name = "count", DataFormat = DataFormat.TwosComplement)] + public uint count + { + get + { + return this._count ?? 0u; + } + set + { + this._count = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool countSpecified + { + get + { + return this._count != null; + } + set + { + bool flag = value == (this._count == null); + if (flag) + { + this._count = (value ? new uint?(this.count) : null); + } + } + } + + [ProtoMember(7, IsRequired = false, Name = "allcount", DataFormat = DataFormat.TwosComplement)] + public uint allcount + { + get + { + return this._allcount ?? 0u; + } + set + { + this._allcount = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool allcountSpecified + { + get + { + return this._allcount != null; + } + set + { + bool flag = value == (this._allcount == null); + if (flag) + { + this._allcount = (value ? new uint?(this.allcount) : null); + } + } + } + + private ErrorCode? _errorcode; + + private readonly List _results = new List(); + + private uint? _freetimeleft; + + private uint? _freecount; + + private uint? _freeallcount; + + private uint? _count; + + private uint? _allcount; + + private IExtension extensionObject; + + private bool ShouldSerializeerrorcode() + { + return this.errorcodeSpecified; + } + + private void Reseterrorcode() + { + this.errorcodeSpecified = false; + } + + private bool ShouldSerializefreetimeleft() + { + return this.freetimeleftSpecified; + } + + private void Resetfreetimeleft() + { + this.freetimeleftSpecified = false; + } + + private bool ShouldSerializefreecount() + { + return this.freecountSpecified; + } + + private void Resetfreecount() + { + this.freecountSpecified = false; + } + + private bool ShouldSerializefreeallcount() + { + return this.freeallcountSpecified; + } + + private void Resetfreeallcount() + { + this.freeallcountSpecified = false; + } + + private bool ShouldSerializecount() + { + return this.countSpecified; + } + + private void Resetcount() + { + this.countSpecified = false; + } + + private bool ShouldSerializeallcount() + { + return this.allcountSpecified; + } + + private void Resetallcount() + { + this.allcountSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0