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

namespace XMainClient
{
	internal class XBuffBillboardAddEventArgs : XEventArgs
	{
		public int xBuffID;

		public int xBuffLevel;

		public XBuffBillboardAddEventArgs()
		{
			this._eDefine = XEventDefine.XEvent_BuffBillboardAdd;
			this.xBuffID = 0;
			this.xBuffLevel = 0;
		}

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