blob: f1bd1ecfc771266cca6dafc34ebd36d4d7a62d73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using KKSG;
namespace XMainClient
{
internal class Process_RpcC2M_GroupChatLeaderReviewList
{
public static void OnReply(GroupChatLeaderReviewListC2S oArg, GroupChatLeaderReviewListS2C oRes)
{
GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
specificDocument.ReceiveGroupChatLeaderReviewList(oRes);
}
public static void OnTimeout(GroupChatLeaderReviewListC2S oArg)
{
}
}
}
|