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

namespace XMainClient
{
	internal class Process_PtcT2C_ErrorNotify
	{
		public static void Process(PtcT2C_ErrorNotify roPtc)
		{
			XSingleton<XClientNetwork>.singleton.OnServerErrorNotify(roPtc.Data.errorno, null);
		}
	}
}