blob: f343c9a916b6b0927e8719fefc498140447a27da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
namespace XMainClient
{
internal class Process_PtcT2C_ChatNotify
{
public static void Process(PtcT2C_ChatNotify roPtc)
{
XChatDocument specificDocument = XDocuments.GetSpecificDocument<XChatDocument>(XChatDocument.uuID);
specificDocument.OnReceiveChatInfo(roPtc.Data.chatinfo);
}
}
}
|