blob: a548444bde7a5b47685e35a137e2fb4e2a2ba2a8 (
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_SynPetInfo
{
public static void OnReply(SynPetInfoArg oArg, SynPetInfoRes oRes)
{
XPetDocument specificDocument = XDocuments.GetSpecificDocument<XPetDocument>(XPetDocument.uuID);
specificDocument.OnPetInfo(oArg, oRes);
}
public static void OnTimeout(SynPetInfoArg oArg)
{
}
}
}
|