summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetEnhanceAttr.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetEnhanceAttr.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetEnhanceAttr.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetEnhanceAttr.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetEnhanceAttr.cs
new file mode 100644
index 00000000..7dab702c
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetEnhanceAttr.cs
@@ -0,0 +1,27 @@
+using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetEnhanceAttr
+ {
+ public static void OnReply(GetEnhanceAttrArg oArg, GetEnhanceAttrRes oRes)
+ {
+ bool flag = oRes == null;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(ErrorCode.ERR_FAILED, "fece00");
+ }
+ else
+ {
+ XEnhanceDocument.Doc.OnReqEnhanceAttrBack(oArg, oRes);
+ }
+ }
+
+ public static void OnTimeout(GetEnhanceAttrArg oArg)
+ {
+ }
+ }
+}