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

namespace XMainClient
{
	internal class Process_PtcM2C_QAIDNameNtf
	{
		public static void Process(PtcM2C_QAIDNameNtf roPtc)
		{
			XVoiceQADocument specificDocument = XDocuments.GetSpecificDocument<XVoiceQADocument>(XVoiceQADocument.uuID);
			specificDocument.DealWithNameIndex(roPtc.Data.idname);
		}
	}
}