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