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/XEnmityEventArgs.cs | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Client/Assets/Scripts/XMainClient/XEnmityEventArgs.cs (limited to 'Client/Assets/Scripts/XMainClient/XEnmityEventArgs.cs') diff --git a/Client/Assets/Scripts/XMainClient/XEnmityEventArgs.cs b/Client/Assets/Scripts/XMainClient/XEnmityEventArgs.cs new file mode 100644 index 00000000..7ffb784e --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XEnmityEventArgs.cs @@ -0,0 +1,42 @@ +using System; + +namespace XMainClient +{ + internal class XEnmityEventArgs : XEventArgs + { + public XObject Starter + { + get + { + return this._starter; + } + set + { + this._starter = value; + } + } + + public XAttributeDefine AttrKey { get; set; } + + public double DeltaValue { get; set; } + + public uint SkillId { get; set; } + + protected XObject _starter = null; + + public XEnmityEventArgs() + { + this._eDefine = XEventDefine.XEvent_Enmity; + this.AttrKey = XAttributeDefine.XAttr_Invalid; + } + + public override void Recycle() + { + this.AttrKey = XAttributeDefine.XAttr_Invalid; + this.DeltaValue = 0.0; + this._starter = null; + base.Recycle(); + XEventPool.Recycle(this); + } + } +} -- cgit v1.1-26-g67d0