summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XBillboardShowCtrlEventArgs.cs
blob: 29346fe3a5eec0c177816dcb993654557dd7b3c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;

namespace XMainClient
{
	internal class XBillboardShowCtrlEventArgs : XEventArgs
	{
		public bool show;

		public BillBoardHideType type = BillBoardHideType.Invalid;

		public XBillboardShowCtrlEventArgs()
		{
			this._eDefine = XEventDefine.XEvent_BillboardShowCtrl;
		}

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