blob: 80aadd14cccc8fbefd7b559db610dfaff0c553de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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<XAIEndSkillEventArgs>.Recycle(this);
}
}
}
|