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

namespace XMainClient
{
	internal class Process_PtcG2C_AllyMatchRoleIDNotify
	{
		public static void Process(PtcG2C_AllyMatchRoleIDNotify roPtc)
		{
			XTeamDocument specificDocument = XDocuments.GetSpecificDocument<XTeamDocument>(XTeamDocument.uuID);
			bool bInTeam = specificDocument.bInTeam;
			if (bInTeam)
			{
				specificDocument.MyTeam.OnEntityMatchingInfo(roPtc.Data);
			}
		}
	}
}