diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/XEnmityEventArgs.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XEnmityEventArgs.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XEnmityEventArgs.cs | 42 |
1 files changed, 42 insertions, 0 deletions
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<XEnmityEventArgs>.Recycle(this);
+ }
+ }
+}
|