From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../XMainClient/KKSG/NotifyEnemyEnterFight.cs | 105 +++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/KKSG/NotifyEnemyEnterFight.cs (limited to 'Client/Assets/Scripts/XMainClient/KKSG/NotifyEnemyEnterFight.cs') diff --git a/Client/Assets/Scripts/XMainClient/KKSG/NotifyEnemyEnterFight.cs b/Client/Assets/Scripts/XMainClient/KKSG/NotifyEnemyEnterFight.cs new file mode 100644 index 00000000..b1aaf6b5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/KKSG/NotifyEnemyEnterFight.cs @@ -0,0 +1,105 @@ +using System; +using System.ComponentModel; +using System.Xml.Serialization; +using ProtoBuf; + +namespace KKSG +{ + [ProtoContract(Name = "NotifyEnemyEnterFight")] + [Serializable] + public class NotifyEnemyEnterFight : IExtensible + { + [ProtoMember(1, IsRequired = false, Name = "enterfight", DataFormat = DataFormat.Default)] + public bool enterfight + { + get + { + return this._enterfight ?? false; + } + set + { + this._enterfight = new bool?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool enterfightSpecified + { + get + { + return this._enterfight != null; + } + set + { + bool flag = value == (this._enterfight == null); + if (flag) + { + this._enterfight = (value ? new bool?(this.enterfight) : null); + } + } + } + + [ProtoMember(2, IsRequired = false, Name = "enemyid", DataFormat = DataFormat.TwosComplement)] + public ulong enemyid + { + get + { + return this._enemyid ?? 0UL; + } + set + { + this._enemyid = new ulong?(value); + } + } + + [XmlIgnore] + [Browsable(false)] + public bool enemyidSpecified + { + get + { + return this._enemyid != null; + } + set + { + bool flag = value == (this._enemyid == null); + if (flag) + { + this._enemyid = (value ? new ulong?(this.enemyid) : null); + } + } + } + + private bool? _enterfight; + + private ulong? _enemyid; + + private IExtension extensionObject; + + private bool ShouldSerializeenterfight() + { + return this.enterfightSpecified; + } + + private void Resetenterfight() + { + this.enterfightSpecified = false; + } + + private bool ShouldSerializeenemyid() + { + return this.enemyidSpecified; + } + + private void Resetenemyid() + { + this.enemyidSpecified = false; + } + + IExtension IExtensible.GetExtensionObject(bool createIfMissing) + { + return Extensible.GetExtensionObject(ref this.extensionObject, createIfMissing); + } + } +} -- cgit v1.1-26-g67d0