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

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