blob: 7dbd659ced83b65360c1d289695917a2797df010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using System;
namespace XMainClient
{
internal class Process_PtcM2C_GroupChatApply
{
public static void Process(PtcM2C_GroupChatApply roPtc)
{
GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
specificDocument.bShowMotion = true;
}
}
}
|