summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillInitCoolNtf.cs
blob: 4c85bd5ff63e7b3876f364ec251fb903bb3bbae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using XUtliPoolLib;

namespace XMainClient
{
	internal class Process_PtcG2C_SkillInitCoolNtf
	{
		public static void Process(PtcG2C_SkillInitCoolNtf roPtc)
		{
			XInitCoolDownAllSkillsArgs @event = XEventPool<XInitCoolDownAllSkillsArgs>.GetEvent();
			@event.Firer = XSingleton<XGame>.singleton.Doc;
			XSingleton<XEventMgr>.singleton.FireEvent(@event);
		}
	}
}