blob: 751af8aff6dbb665e5aae1844a7748e1c53a8018 (
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_CrossGvgOper
{
public static void OnReply(CrossGvgOperArg oArg, CrossGvgOperRes oRes)
{
XCrossGVGDocument specificDocument = XDocuments.GetSpecificDocument<XCrossGVGDocument>(XCrossGVGDocument.uuID);
specificDocument.NotifyCrossGVGOper(oArg, oRes);
}
public static void OnTimeout(CrossGvgOperArg oArg)
{
}
}
}
|