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