diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GmfReadyReq.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GmfReadyReq.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GmfReadyReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GmfReadyReq.cs new file mode 100644 index 00000000..7a15e3df --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GmfReadyReq.cs @@ -0,0 +1,18 @@ +using System;
+using KKSG;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GmfReadyReq
+ {
+ public static void OnReply(GmfReadyArg oArg, GmfReadyRes oRes)
+ {
+ XGuildArenaBattleDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaBattleDocument>(XGuildArenaBattleDocument.uuID);
+ specificDocument.OnReadyReq(oRes);
+ }
+
+ public static void OnTimeout(GmfReadyArg oArg)
+ {
+ }
+ }
+}
|