diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GMCommand.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GMCommand.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GMCommand.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GMCommand.cs new file mode 100644 index 00000000..e8d0af42 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GMCommand.cs @@ -0,0 +1,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)
+ {
+ }
+ }
+}
|