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/PayMemberPrivilege.cs | 332 +++++++++++++++++++++ 1 file changed, 332 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/PayMemberPrivilege.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/PayMemberPrivilege.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/PayMemberPrivilege.cs b/Client/Assets/Scripts/XMainClient/KKSG/PayMemberPrivilege.cs new file mode 100644 index 00000000..ee8dd2c0 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/PayMemberPrivilege.cs @@ -0,0 +1,332 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "PayMemberPrivilege")] + [Serializable] + public class PayMemberPrivilege : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "usedReviveCount", DataFormat = DataFormat.TwosComplement)] + public int usedReviveCount + { + get + { + return this._usedReviveCount ?? 0; + } + set + { + this._usedReviveCount = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool usedReviveCountSpecified + { + get + { + return this._usedReviveCount != null; + } + set + { + bool flag = value == (this._usedReviveCount == null); + if (flag) + { + this._usedReviveCount = (value ? new int?(this.usedReviveCount) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "usedChatCount", DataFormat = DataFormat.TwosComplement)] + public int usedChatCount + { + get + { + return this._usedChatCount ?? 0; + } + set + { + this._usedChatCount = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool usedChatCountSpecified + { + get + { + return this._usedChatCount != null; + } + set + { + bool flag = value == (this._usedChatCount == null); + if (flag) + { + this._usedChatCount = (value ? new int?(this.usedChatCount) : null); + } + } + } + + [ProtoMember(3, IsRequired = false, Name = "usedAbyssCount", DataFormat = DataFormat.TwosComplement)] + public int usedAbyssCount + { + get + { + return this._usedAbyssCount ?? 0; + } + set + { + this._usedAbyssCount = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool usedAbyssCountSpecified + { + get + { + return this._usedAbyssCount != null; + } + set + { + bool flag = value == (this._usedAbyssCount == null); + if (flag) + { + this._usedAbyssCount = (value ? new int?(this.usedAbyssCount) : null); + } + } + } + + [ProtoMember(4, IsRequired = false, Name = "usedBossRushCount", DataFormat = DataFormat.TwosComplement)] + public int usedBossRushCount + { + get + { + return this._usedBossRushCount ?? 0; + } + set + { + this._usedBossRushCount = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool usedBossRushCountSpecified + { + get + { + return this._usedBossRushCount != null; + } + set + { + bool flag = value == (this._usedBossRushCount == null); + if (flag) + { + this._usedBossRushCount = (value ? new int?(this.usedBossRushCount) : null); + } + } + } + + [ProtoMember(5, IsRequired = false, Name = "usedBuyGreenAgateCount", DataFormat = DataFormat.TwosComplement)] + public int usedBuyGreenAgateCount + { + get + { + return this._usedBuyGreenAgateCount ?? 0; + } + set + { + this._usedBuyGreenAgateCount = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool usedBuyGreenAgateCountSpecified + { + get + { + return this._usedBuyGreenAgateCount != null; + } + set + { + bool flag = value == (this._usedBuyGreenAgateCount == null); + if (flag) + { + this._usedBuyGreenAgateCount = (value ? new int?(this.usedBuyGreenAgateCount) : null); + } + } + } + + [ProtoMember(6, IsRequired = false, Name = "usedSuperRiskCount", DataFormat = DataFormat.TwosComplement)] + public int usedSuperRiskCount + { + get + { + return this._usedSuperRiskCount ?? 0; + } + set + { + this._usedSuperRiskCount = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool usedSuperRiskCountSpecified + { + get + { + return this._usedSuperRiskCount != null; + } + set + { + bool flag = value == (this._usedSuperRiskCount == null); + if (flag) + { + this._usedSuperRiskCount = (value ? new int?(this.usedSuperRiskCount) : null); + } + } + } + + [ProtoMember(7, Name = "usedPrivilegeShop", DataFormat = DataFormat.Default)] + public List usedPrivilegeShop + { + get + { + return this._usedPrivilegeShop; + } + } + + [ProtoMember(8, IsRequired = false, Name = "usedRefreshShopCount", DataFormat = DataFormat.TwosComplement)] + public int usedRefreshShopCount + { + get + { + return this._usedRefreshShopCount ?? 0; + } + set + { + this._usedRefreshShopCount = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool usedRefreshShopCountSpecified + { + get + { + return this._usedRefreshShopCount != null; + } + set + { + bool flag = value == (this._usedRefreshShopCount == null); + if (flag) + { + this._usedRefreshShopCount = (value ? new int?(this.usedRefreshShopCount) : null); + } + } + } + + private int? _usedReviveCount; + + private int? _usedChatCount; + + private int? _usedAbyssCount; + + private int? _usedBossRushCount; + + private int? _usedBuyGreenAgateCount; + + private int? _usedSuperRiskCount; + + private readonly List _usedPrivilegeShop = new List(); + + private int? _usedRefreshShopCount; + + private IExtension extensionObject; + + private bool ShouldSerializeusedReviveCount() + { + return this.usedReviveCountSpecified; + } + + private void ResetusedReviveCount() + { + this.usedReviveCountSpecified = false; + } + + private bool ShouldSerializeusedChatCount() + { + return this.usedChatCountSpecified; + } + + private void ResetusedChatCount() + { + this.usedChatCountSpecified = false; + } + + private bool ShouldSerializeusedAbyssCount() + { + return this.usedAbyssCountSpecified; + } + + private void ResetusedAbyssCount() + { + this.usedAbyssCountSpecified = false; + } + + private bool ShouldSerializeusedBossRushCount() + { + return this.usedBossRushCountSpecified; + } + + private void ResetusedBossRushCount() + { + this.usedBossRushCountSpecified = false; + } + + private bool ShouldSerializeusedBuyGreenAgateCount() + { + return this.usedBuyGreenAgateCountSpecified; + } + + private void ResetusedBuyGreenAgateCount() + { + this.usedBuyGreenAgateCountSpecified = false; + } + + private bool ShouldSerializeusedSuperRiskCount() + { + return this.usedSuperRiskCountSpecified; + } + + private void ResetusedSuperRiskCount() + { + this.usedSuperRiskCountSpecified = false; + } + + private bool ShouldSerializeusedRefreshShopCount() + { + return this.usedRefreshShopCountSpecified; + } + + private void ResetusedRefreshShopCount() + { + this.usedRefreshShopCountSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0