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

namespace XMainClient
{
	internal class Process_PtcM2C_MSEventNotify
	{
		public static void Process(PtcM2C_MSEventNotify roPtc)
		{
			XSingleton<UiUtility>.singleton.ShowSystemTip(roPtc.Data.notify, "fece00");
		}
	}
}