using System; namespace XMainClient { internal class XAIEndSkillEventArgs : XEventArgs { public uint SkillId = 0u; public bool IsCaster = false; public XAIEndSkillEventArgs() { this._eDefine = XEventDefine.XEvent_AIEndSkill; } public override void Recycle() { this.SkillId = 0u; this.IsCaster = false; base.Recycle(); XEventPool.Recycle(this); } } }