summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_SkillCoolNtf.cs
blob: 7c833fc80bb13fd23dffc3164042403e51cd4a65 (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_SkillCoolNtf
	{
		public static void Process(PtcG2C_SkillCoolNtf roPtc)
		{
			XCoolDownAllSkillsArgs @event = XEventPool<XCoolDownAllSkillsArgs>.GetEvent();
			@event.Firer = XSingleton<XGame>.singleton.Doc;
			XSingleton<XEventMgr>.singleton.FireEvent(@event);
		}
	}
}