diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/KKSG/AchieveBriefInfo.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/AchieveBriefInfo.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/KKSG/AchieveBriefInfo.cs | 191 |
1 files changed, 191 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/AchieveBriefInfo.cs b/Client/Assets/Scripts/XMainClient/KKSG/AchieveBriefInfo.cs new file mode 100644 index 00000000..d5839376 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/AchieveBriefInfo.cs @@ -0,0 +1,191 @@ +using System;
+using System.ComponentModel;
+using System.Xml.Serialization;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "AchieveBriefInfo")]
+ [Serializable]
+ public class AchieveBriefInfo : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "achieveClassifyType", DataFormat = DataFormat.TwosComplement)]
+ public uint achieveClassifyType
+ {
+ get
+ {
+ return this._achieveClassifyType ?? 0u;
+ }
+ set
+ {
+ this._achieveClassifyType = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool achieveClassifyTypeSpecified
+ {
+ get
+ {
+ return this._achieveClassifyType != null;
+ }
+ set
+ {
+ bool flag = value == (this._achieveClassifyType == null);
+ if (flag)
+ {
+ this._achieveClassifyType = (value ? new uint?(this.achieveClassifyType) : null);
+ }
+ }
+ }
+
+ [ProtoMember(2, IsRequired = false, Name = "achievePoint", DataFormat = DataFormat.TwosComplement)]
+ public uint achievePoint
+ {
+ get
+ {
+ return this._achievePoint ?? 0u;
+ }
+ set
+ {
+ this._achievePoint = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool achievePointSpecified
+ {
+ get
+ {
+ return this._achievePoint != null;
+ }
+ set
+ {
+ bool flag = value == (this._achievePoint == null);
+ if (flag)
+ {
+ this._achievePoint = (value ? new uint?(this.achievePoint) : null);
+ }
+ }
+ }
+
+ [ProtoMember(3, IsRequired = false, Name = "maxAchievePoint", DataFormat = DataFormat.TwosComplement)]
+ public uint maxAchievePoint
+ {
+ get
+ {
+ return this._maxAchievePoint ?? 0u;
+ }
+ set
+ {
+ this._maxAchievePoint = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool maxAchievePointSpecified
+ {
+ get
+ {
+ return this._maxAchievePoint != null;
+ }
+ set
+ {
+ bool flag = value == (this._maxAchievePoint == null);
+ if (flag)
+ {
+ this._maxAchievePoint = (value ? new uint?(this.maxAchievePoint) : null);
+ }
+ }
+ }
+
+ [ProtoMember(4, IsRequired = false, Name = "canRewardCount", DataFormat = DataFormat.TwosComplement)]
+ public uint canRewardCount
+ {
+ get
+ {
+ return this._canRewardCount ?? 0u;
+ }
+ set
+ {
+ this._canRewardCount = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool canRewardCountSpecified
+ {
+ get
+ {
+ return this._canRewardCount != null;
+ }
+ set
+ {
+ bool flag = value == (this._canRewardCount == null);
+ if (flag)
+ {
+ this._canRewardCount = (value ? new uint?(this.canRewardCount) : null);
+ }
+ }
+ }
+
+ private uint? _achieveClassifyType;
+
+ private uint? _achievePoint;
+
+ private uint? _maxAchievePoint;
+
+ private uint? _canRewardCount;
+
+ private IExtension extensionObject;
+
+ private bool ShouldSerializeachieveClassifyType()
+ {
+ return this.achieveClassifyTypeSpecified;
+ }
+
+ private void ResetachieveClassifyType()
+ {
+ this.achieveClassifyTypeSpecified = false;
+ }
+
+ private bool ShouldSerializeachievePoint()
+ {
+ return this.achievePointSpecified;
+ }
+
+ private void ResetachievePoint()
+ {
+ this.achievePointSpecified = false;
+ }
+
+ private bool ShouldSerializemaxAchievePoint()
+ {
+ return this.maxAchievePointSpecified;
+ }
+
+ private void ResetmaxAchievePoint()
+ {
+ this.maxAchievePointSpecified = false;
+ }
+
+ private bool ShouldSerializecanRewardCount()
+ {
+ return this.canRewardCountSpecified;
+ }
+
+ private void ResetcanRewardCount()
+ {
+ this.canRewardCountSpecified = false;
+ }
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}
|