summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XAISkillHurtEventArgs.cs
blob: b7aec80e3e30657e3412d2cd88cf6cce590bef5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;

namespace XMainClient
{
	internal class XAISkillHurtEventArgs : XEventArgs
	{
		public uint SkillId = 0u;

		public bool IsCaster = false;

		public XAISkillHurtEventArgs()
		{
			this._eDefine = XEventDefine.XEvent_AISkillHurt;
		}

		public override void Recycle()
		{
			this.SkillId = 0u;
			base.Recycle();
			XEventPool<XAISkillHurtEventArgs>.Recycle(this);
		}
	}
}