using System; namespace XMainClient { internal class XOnEntityDeletedArgs : XEventArgs { public ulong Id; public XOnEntityDeletedArgs() { this._eDefine = XEventDefine.XEvent_OnEntityDeleted; this.Id = 0UL; } public override void Recycle() { base.Recycle(); this.Id = 0UL; XEventPool.Recycle(this); } } }