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