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

namespace XMainClient
{
	internal class Process_PtcM2C_GroupChatManager
	{
		public static void Process(PtcM2C_GroupChatManager roPtc)
		{
			GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
			specificDocument.ResChangePlayer(roPtc.Data);
		}
	}
}