From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../XMainClient/KKSG/AddLevelScriptExtString.cs | 148 +++++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/AddLevelScriptExtString.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/AddLevelScriptExtString.cs') 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); + } + } +} -- cgit v1.1-26-g67d0