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

namespace XMainClient
{
	internal class Process_PtcM2C_StartBattleFailedM2CNtf
	{
		public static void Process(PtcM2C_StartBattleFailedM2CNtf roPtc)
		{
			XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
			specificDocument.ProcessTeamOPErrorCode(roPtc.Data.reason, roPtc.Data.proUserID);
		}
	}
}