summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/Skill/XSkillExternalArgs.cs
blob: f2381522189885baa23d936d6bfd951087191693 (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 abstract class XSkillExternalArgs : XEventArgs
	{
		public SkillExternalCallback callback = null;

		public float delay = 0f;

		public XSkillExternalArgs()
		{
			this._eDefine = XEventDefine.XEvent_SkillExternal;
		}

		public override void Recycle()
		{
			this.callback = null;
			this.delay = 0f;
			base.Recycle();
		}
	}
}