blob: bcc8b1bfc664a0435d753a4ad866433b5e2fa074 (
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_GroupChatLeaderReview
{
public static void OnReply(GroupChatLeaderReviewC2S oArg, GroupChatLeaderReviewS2C oRes)
{
GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
specificDocument.ReceiveGroupChatLeaderReview(oArg, oRes);
}
public static void OnTimeout(GroupChatLeaderReviewC2S oArg)
{
}
}
}
|