blob: bcb94fedbcfae4695b03ccfed35ed42a443f1395 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using KKSG;
namespace XMainClient
{
internal class Process_RpcC2G_GetPayAllInfo
{
public static void OnReply(GetPayAllInfoArg oArg, GetPayAllInfoRes oRes)
{
XWelfareDocument specificDocument = XDocuments.GetSpecificDocument<XWelfareDocument>(XWelfareDocument.uuID);
specificDocument.OnGetPayAllInfo(oArg, oRes);
XRechargeDocument specificDocument2 = XDocuments.GetSpecificDocument<XRechargeDocument>(XRechargeDocument.uuID);
specificDocument2.OnGetPayAllInfo(oArg, oRes);
}
public static void OnTimeout(GetPayAllInfoArg oArg)
{
}
}
}
|