blob: 2547a803572b52b2ff8a0810ebfea659fc6c6833 (
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 XBuffBillboardRemoveEventArgs : XEventArgs
{
public int xBuffID;
public XBuffBillboardRemoveEventArgs()
{
this._eDefine = XEventDefine.XEvent_BuffBillboardRemove;
this.xBuffID = 0;
}
public override void Recycle()
{
base.Recycle();
XEventPool<XBuffBillboardRemoveEventArgs>.Recycle(this);
}
}
}
|