summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XManipulationOffEventArgs.cs
blob: 1360019cf3b9e005629c80fdb67b7a48b680b8b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);
		}
	}
}