diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildLiveness.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildLiveness.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildLiveness.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildLiveness.cs new file mode 100644 index 00000000..746b88fa --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2M_GetDragonGuildLiveness.cs @@ -0,0 +1,27 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2M_GetDragonGuildLiveness
+ {
+ public static void OnReply(GetPartnerLivenessArg oArg, GetPartnerLivenessRes oRes)
+ {
+ bool flag = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowErrorCode(oRes.result);
+ }
+ else
+ {
+ XDragonGuildDocument.DragonGuildLivenessData.OnGetDragonGuildLivenessInfoBack(oRes);
+ }
+ }
+
+ public static void OnTimeout(GetPartnerLivenessArg oArg)
+ {
+ }
+ }
+}
|