From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- Client/Assets/Scripts/XMainClient/KKSG/QuitRoom.cs | 105 +++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/QuitRoom.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/QuitRoom.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/QuitRoom.cs b/Client/Assets/Scripts/XMainClient/KKSG/QuitRoom.cs new file mode 100644 index 00000000..07eb82ba --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/QuitRoom.cs @@ -0,0 +1,105 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "QuitRoom")] + [Serializable] + public class QuitRoom : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "roomID", DataFormat = DataFormat.TwosComplement)] + public long roomID + { + get + { + return this._roomID ?? 0L; + } + set + { + this._roomID = new long?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool roomIDSpecified + { + get + { + return this._roomID != null; + } + set + { + bool flag = value == (this._roomID == null); + if (flag) + { + this._roomID = (value ? new long?(this.roomID) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "memberID", DataFormat = DataFormat.TwosComplement)] + public int memberID + { + get + { + return this._memberID ?? 0; + } + set + { + this._memberID = new int?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool memberIDSpecified + { + get + { + return this._memberID != null; + } + set + { + bool flag = value == (this._memberID == null); + if (flag) + { + this._memberID = (value ? new int?(this.memberID) : null); + } + } + } + + private long? _roomID; + + private int? _memberID; + + private IExtension extensionObject; + + private bool ShouldSerializeroomID() + { + return this.roomIDSpecified; + } + + private void ResetroomID() + { + this.roomIDSpecified = false; + } + + private bool ShouldSerializememberID() + { + return this.memberIDSpecified; + } + + private void ResetmemberID() + { + this.memberIDSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0