blob: 6a9e06342b9f886f2b0a4c6238b81067ead5d15f (
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_GroupChatPlayerApply
{
public static void OnReply(GroupChatPlayerApplyC2S oArg, GroupChatPlayerApplyS2C oRes)
{
GroupChatDocument specificDocument = XDocuments.GetSpecificDocument<GroupChatDocument>(GroupChatDocument.uuID);
specificDocument.ReceiveGroupChatPlayerApply(oArg, oRes);
}
public static void OnTimeout(GroupChatPlayerApplyC2S oArg)
{
}
}
}
|