blob: e8d0af4275c38f37c6c9ea298f1bd3f02b21d496 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using KKSG;
using XMainClient.UI;
using XMainClient.UI.UICommon;
namespace XMainClient
{
internal class Process_RpcC2G_GMCommand
{
public static void OnReply(GMCmdArg oArg, GMCmdRes oRes)
{
DlgBase<DemoUI, DemoUIBehaviour>.singleton.AddMessage(oRes.outputMessage);
}
public static void OnTimeout(GMCmdArg oArg)
{
}
}
}
|