using System; namespace XMainClient { internal class XTeamMemberCountChangedEventArgs : XEventArgs { public uint oldCount; public uint newCount; public XTeamMemberCountChangedEventArgs() { this._eDefine = XEventDefine.XEvent_TeamMemberCountChanged; } public override void Recycle() { base.Recycle(); this.oldCount = 0u; this.newCount = 0u; XEventPool.Recycle(this); } } }