using System; namespace XMainClient { internal class XBuffRemoveEventArgs : XEventArgs { public int xBuffID; public XBuffRemoveEventArgs() { this._eDefine = XEventDefine.XEvent_BuffRemove; this.xBuffID = 0; } public override void Recycle() { base.Recycle(); XEventPool.Recycle(this); } } }