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