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