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