blob: f5aff1a7ce4ad87e932985d29510d595b3915f6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using System;
using KKSG;
using XMainClient.UI;
using XUtliPoolLib;
namespace XMainClient
{
internal class Process_RpcC2G_LevelSealExchange
{
public static void OnReply(LevelSealExchangeArg oArg, LevelSealExchangeRes oRes)
{
bool flag = oRes.errcode > ErrorCode.ERR_SUCCESS;
if (flag)
{
XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.errcode, "fece00");
}
}
public static void OnTimeout(LevelSealExchangeArg oArg)
{
}
}
}
|