From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../Assets/Scripts/XMainClient/KKSG/SSceneState.cs | 105 +++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/SSceneState.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/SSceneState.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/SSceneState.cs b/Client/Assets/Scripts/XMainClient/KKSG/SSceneState.cs new file mode 100644 index 00000000..48bda656 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/SSceneState.cs @@ -0,0 +1,105 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "SSceneState")] + [Serializable] + public class SSceneState : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "isready", DataFormat = DataFormat.Default)] + public bool isready + { + get + { + return this._isready ?? false; + } + set + { + this._isready = new bool?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool isreadySpecified + { + get + { + return this._isready != null; + } + set + { + bool flag = value == (this._isready == null); + if (flag) + { + this._isready = (value ? new bool?(this.isready) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "runstate", DataFormat = DataFormat.TwosComplement)] + public uint runstate + { + get + { + return this._runstate ?? 0u; + } + set + { + this._runstate = new uint?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool runstateSpecified + { + get + { + return this._runstate != null; + } + set + { + bool flag = value == (this._runstate == null); + if (flag) + { + this._runstate = (value ? new uint?(this.runstate) : null); + } + } + } + + private bool? _isready; + + private uint? _runstate; + + private IExtension extensionObject; + + private bool ShouldSerializeisready() + { + return this.isreadySpecified; + } + + private void Resetisready() + { + this.isreadySpecified = false; + } + + private bool ShouldSerializerunstate() + { + return this.runstateSpecified; + } + + private void Resetrunstate() + { + this.runstateSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0