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

namespace XMainClient
{
	internal class Process_PtcM2C_AnswerAckNtf
	{
		public static void Process(PtcM2C_AnswerAckNtf roPtc)
		{
			XVoiceQADocument specificDocument = XDocuments.GetSpecificDocument<XVoiceQADocument>(XVoiceQADocument.uuID);
			specificDocument.AddAnswer2List(roPtc.Data);
		}
	}
}