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

namespace XMainClient
{
	internal class Process_PtcM2C_LeaveTeamM2CNtf
	{
		public static void Process(PtcM2C_LeaveTeamM2CNtf roPtc)
		{
			XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
			specificDocument.OnLeaveTeam((LeaveTeamType)roPtc.Data.errorno);
		}
	}
}