diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDanceIds.cs')
| -rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDanceIds.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDanceIds.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDanceIds.cs new file mode 100644 index 00000000..912322a5 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDanceIds.cs @@ -0,0 +1,27 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetDanceIds
+ {
+ public static void OnReply(GetDanceIdsArg oArg, GetDanceIdsRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(ErrorCode.ERR_FAILED);
+ }
+ else
+ {
+ XDanceDocument.Doc.OnGetDanceIDs(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetDanceIdsArg oArg)
+ {
+ }
+ }
+}
|
