summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/KKSG/AddLevelScriptExtString.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-01-25 14:28:30 +0800
committerchai <chaifix@163.com>2021-01-25 14:28:30 +0800
commit6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch)
tree7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/KKSG/AddLevelScriptExtString.cs
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/KKSG/AddLevelScriptExtString.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/KKSG/AddLevelScriptExtString.cs148
1 files changed, 148 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/KKSG/AddLevelScriptExtString.cs b/Client/Assets/Scripts/XMainClient/KKSG/AddLevelScriptExtString.cs
new file mode 100644
index 00000000..8a7d449e
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/KKSG/AddLevelScriptExtString.cs
@@ -0,0 +1,148 @@
+using System;
+using System.ComponentModel;
+using System.Xml.Serialization;
+using ProtoBuf;
+
+namespace KKSG
+{
+ [ProtoContract(Name = "AddLevelScriptExtString")]
+ [Serializable]
+ public class AddLevelScriptExtString : IExtensible
+ {
+ [ProtoMember(1, IsRequired = false, Name = "extString", DataFormat = DataFormat.Default)]
+ public string extString
+ {
+ get
+ {
+ return this._extString ?? "";
+ }
+ set
+ {
+ this._extString = value;
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool extStringSpecified
+ {
+ get
+ {
+ return this._extString != null;
+ }
+ set
+ {
+ bool flag = value == (this._extString == null);
+ if (flag)
+ {
+ this._extString = (value ? this.extString : null);
+ }
+ }
+ }
+
+ [ProtoMember(2, IsRequired = false, Name = "sceneTempID", DataFormat = DataFormat.TwosComplement)]
+ public uint sceneTempID
+ {
+ get
+ {
+ return this._sceneTempID ?? 0u;
+ }
+ set
+ {
+ this._sceneTempID = new uint?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool sceneTempIDSpecified
+ {
+ get
+ {
+ return this._sceneTempID != null;
+ }
+ set
+ {
+ bool flag = value == (this._sceneTempID == null);
+ if (flag)
+ {
+ this._sceneTempID = (value ? new uint?(this.sceneTempID) : null);
+ }
+ }
+ }
+
+ [ProtoMember(3, IsRequired = false, Name = "waveID", DataFormat = DataFormat.TwosComplement)]
+ public int waveID
+ {
+ get
+ {
+ return this._waveID ?? 0;
+ }
+ set
+ {
+ this._waveID = new int?(value);
+ }
+ }
+
+ [XmlIgnore]
+ [Browsable(false)]
+ public bool waveIDSpecified
+ {
+ get
+ {
+ return this._waveID != null;
+ }
+ set
+ {
+ bool flag = value == (this._waveID == null);
+ if (flag)
+ {
+ this._waveID = (value ? new int?(this.waveID) : null);
+ }
+ }
+ }
+
+ private string _extString;
+
+ private uint? _sceneTempID;
+
+ private int? _waveID;
+
+ private IExtension extensionObject;
+
+ private bool ShouldSerializeextString()
+ {
+ return this.extStringSpecified;
+ }
+
+ private void ResetextString()
+ {
+ this.extStringSpecified = false;
+ }
+
+ private bool ShouldSerializesceneTempID()
+ {
+ return this.sceneTempIDSpecified;
+ }
+
+ private void ResetsceneTempID()
+ {
+ this.sceneTempIDSpecified = false;
+ }
+
+ private bool ShouldSerializewaveID()
+ {
+ return this.waveIDSpecified;
+ }
+
+ private void ResetwaveID()
+ {
+ this.waveIDSpecified = false;
+ }
+
+ IExtension IExtensible.GetExtensionObject(bool createIfMissing)
+ {
+ return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing);
+ }
+ }
+}