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