blob: 7a15e3df491ce1a94e1dc3fc0cb14c5a62dfec7d (
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_RpcC2G_GmfReadyReq
{
public static void OnReply(GmfReadyArg oArg, GmfReadyRes oRes)
{
XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
specificDocument.OnReadyReq(oRes);
}
public static void OnTimeout(GmfReadyArg oArg)
{
}
}
}
|