diff options
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);
+ }
+ }
+}
|