summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XOnComboChangeEventArgs.cs
blob: 7d15b98e4beef41a303c7b6f718b6c514db670a5 (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 XOnComboChangeEventArgs : XEventArgs
	{
		public uint ComboCount = 0u;

		public XOnComboChangeEventArgs()
		{
			this._eDefine = XEventDefine.XEvent_ComboChange;
		}

		public override void Recycle()
		{
			base.Recycle();
			this.ComboCount = 0u;
			XEventPool<XOnComboChangeEventArgs>.Recycle(this);
		}
	}
}