diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XArmorBrokenArgs.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XArmorBrokenArgs.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XArmorBrokenArgs.cs b/Client/Assets/Scripts/XMainClient/XArmorBrokenArgs.cs new file mode 100644 index 00000000..f6a82221 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XArmorBrokenArgs.cs @@ -0,0 +1,21 @@ +using System;
+
+namespace XMainClient
+{
+ internal class XArmorBrokenArgs : XEventArgs
+ {
+ public XEntity Self;
+
+ public XArmorBrokenArgs()
+ {
+ this._eDefine = XEventDefine.XEvent_ArmorBroken;
+ }
+
+ public override void Recycle()
+ {
+ base.Recycle();
+ this.Self = null;
+ XEventPool<XArmorBrokenArgs>.Recycle(this);
+ }
+ }
+}
|