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

namespace XMainClient
{
	internal class Process_PtcM2C_IdipClearChatNtf
	{
		public static void Process(PtcM2C_IdipClearChatNtf roPtc)
		{
			XChatDocument specificDocument = XDocuments.GetSpecificDocument<XChatDocument>(XChatDocument.uuID);
			specificDocument.ClearRoleMsg(roPtc.Data.roleid);
			XVoiceQADocument specificDocument2 = XDocuments.GetSpecificDocument<XVoiceQADocument>(XVoiceQADocument.uuID);
			specificDocument2.IDIPClearRoleMsg(roPtc.Data.roleid);
		}
	}
}