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

namespace XMainClient
{
	internal class Process_PtcG2C_ExecuteLevelScriptNtf
	{
		public static void Process(PtcG2C_ExecuteLevelScriptNtf roPtc)
		{
			XSingleton<XLevelScriptMgr>.singleton.RunScript(roPtc.Data.script);
		}
	}
}