blob: 70dda74d529a2dff0ac395e34e53acde8c0eae00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using KKSG;
namespace XMainClient
{
internal class Process_RpcC2M_GCFReadysInfoReq
{
public static void OnReply(GCFReadyInfoArg oArg, GCFReadyInfoRes oRes)
{
bool flag = oRes == null;
if (!flag)
{
XGuildTerritoryDocument specificDocument = XDocuments.GetSpecificDocument<XGuildTerritoryDocument>(XGuildTerritoryDocument.uuID);
specificDocument.RespGCFReadysInfo(oRes);
}
}
public static void OnTimeout(GCFReadyInfoArg oArg)
{
}
}
}
|