summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/Components/ActionStates/XIdleEventArgs.cs
blob: 15e8a7e4b63e1699e347721843805f139fdee6c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

namespace XMainClient
{
	internal class XIdleEventArgs : XActionArgs
	{
		public XIdleEventArgs()
		{
			this._eDefine = XEventDefine.XEvent_Idle;
		}

		public override void Recycle()
		{
			base.Recycle();
			XEventPool<XIdleEventArgs>.Recycle(this);
		}
	}
}