summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeSupplementNtf.cs
blob: 387eaabe28693477a2f423305ce8da52a4af938b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using KKSG;
using XMainClient.UI;
using XUtliPoolLib;

namespace XMainClient
{
	internal class Process_PtcG2C_ChangeSupplementNtf
	{
		public static void Process(PtcG2C_ChangeSupplementNtf roPtc)
		{
			bool flag = roPtc.Data.errorcode > ErrorCode.ERR_SUCCESS;
			if (flag)
			{
				XSingleton<UiUtility>.singleton.ShowSystemTip(roPtc.Data.errorcode, "fece00");
			}
		}
	}
}