diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/XUnloadEquipEventArgs.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/XUnloadEquipEventArgs.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/XUnloadEquipEventArgs.cs b/Client/Assets/Scripts/XMainClient/XUnloadEquipEventArgs.cs new file mode 100644 index 00000000..def307d5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/XUnloadEquipEventArgs.cs @@ -0,0 +1,26 @@ +using System;
+
+namespace XMainClient
+{
+ internal class XUnloadEquipEventArgs : XEventArgs
+ {
+ public int slot;
+
+ public XItem item;
+
+ public ItemType type;
+
+ public XUnloadEquipEventArgs()
+ {
+ this._eDefine = XEventDefine.XEvent_UnloadEquip;
+ }
+
+ public override void Recycle()
+ {
+ base.Recycle();
+ this.slot = 0;
+ this.item = null;
+ XEventPool<XUnloadEquipEventArgs>.Recycle(this);
+ }
+ }
+}
|