diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyExchangeInfo.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyExchangeInfo.cs | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyExchangeInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyExchangeInfo.cs new file mode 100644 index 00000000..cd24beb6 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_RpcC2G_GetGuildCampPartyExchangeInfo.cs @@ -0,0 +1,38 @@ +using System;
+using System.Reflection;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_RpcC2G_GetGuildCampPartyExchangeInfo
+ {
+ public static void OnReply(GetGuildCampPartyExchangeInfoArg oArg, GetGuildCampPartyExchangeInfoRes oRes)
+ {
+ bool flag = oRes.result == ErrorCode.ERR_INVALID_REQUEST;
+ if (flag)
+ {
+ string fullName = MethodBase.GetCurrentMethod().ReflectedType.FullName;
+ XSingleton<UiUtility>.singleton.OnGetInvalidRequest(fullName);
+ }
+ else
+ {
+ bool flag2 = oRes.result > ErrorCode.ERR_SUCCESS;
+ if (flag2)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(oRes.result, "fece00");
+ }
+ else
+ {
+ XRequestDocument specificDocument = XDocuments.GetSpecificDocument<XRequestDocument>(XRequestDocument.uuID);
+ specificDocument.OnRequestListGet(oRes.infos);
+ }
+ }
+ }
+
+ public static void OnTimeout(GetGuildCampPartyExchangeInfoArg oArg)
+ {
+ }
+ }
+}
|