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/DailyTaskInfo.cs | 191 +++++++++++++++++++++ 1 file changed, 191 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/DailyTaskInfo.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/DailyTaskInfo.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/DailyTaskInfo.cs b/Client/Assets/Scripts/XMainClient/KKSG/DailyTaskInfo.cs new file mode 100644 index 00000000..41eefd05 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/DailyTaskInfo.cs @@ -0,0 +1,191 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "DailyTaskInfo")] + [Serializable] + public class DailyTaskInfo : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "id", DataFormat = DataFormat.TwosComplement)] + public uint id + { + get + { + return this._id ?? 0u; + } + set + { + this._id = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool idSpecified + { + get + { + return this._id != null; + } + set + { + bool flag = value == (this._id == null); + if (flag) + { + this._id = (value ? new uint?(this.id) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "step", DataFormat = DataFormat.TwosComplement)] + public uint step + { + get + { + return this._step ?? 0u; + } + set + { + this._step = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool stepSpecified + { + get + { + return this._step != null; + } + set + { + bool flag = value == (this._step == null); + if (flag) + { + this._step = (value ? new uint?(this.step) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "is_rewarded", DataFormat = DataFormat.Default)] + public bool is_rewarded + { + get + { + return this._is_rewarded ?? false; + } + set + { + this._is_rewarded = new bool?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool is_rewardedSpecified + { + get + { + return this._is_rewarded != null; + } + set + { + bool flag = value == (this._is_rewarded == null); + if (flag) + { + this._is_rewarded = (value ? new bool?(this.is_rewarded) : null); + } + } + } + + [ProtoMember(4, IsRequired = false, Name = "ask_help", DataFormat = DataFormat.Default)] + public bool ask_help + { + get + { + return this._ask_help ?? false; + } + set + { + this._ask_help = new bool?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool ask_helpSpecified + { + get + { + return this._ask_help != null; + } + set + { + bool flag = value == (this._ask_help == null); + if (flag) + { + this._ask_help = (value ? new bool?(this.ask_help) : null); + } + } + } + + private uint? _id; + + private uint? _step; + + private bool? _is_rewarded; + + private bool? _ask_help; + + private IExtension extensionObject; + + private bool ShouldSerializeid() + { + return this.idSpecified; + } + + private void Resetid() + { + this.idSpecified = false; + } + + private bool ShouldSerializestep() + { + return this.stepSpecified; + } + + private void Resetstep() + { + this.stepSpecified = false; + } + + private bool ShouldSerializeis_rewarded() + { + return this.is_rewardedSpecified; + } + + private void Resetis_rewarded() + { + this.is_rewardedSpecified = false; + } + + private bool ShouldSerializeask_help() + { + return this.ask_helpSpecified; + } + + private void Resetask_help() + { + this.ask_helpSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0