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

namespace XMainClient
{
	internal class Process_PtcM2C_RoleMatchStateM2CNotify
	{
		public static void Process(PtcM2C_RoleMatchStateM2CNotify roPtc)
		{
			XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
			specificDocument.OnRoleMatchStateNotify(roPtc.Data);
		}
	}
}