summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateBuyGoldAndFatigueInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateBuyGoldAndFatigueInfo.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateBuyGoldAndFatigueInfo.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateBuyGoldAndFatigueInfo.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateBuyGoldAndFatigueInfo.cs
new file mode 100644
index 00000000..d196ea28
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_UpdateBuyGoldAndFatigueInfo.cs
@@ -0,0 +1,15 @@
+using System;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_UpdateBuyGoldAndFatigueInfo
+ {
+ public static void Process(PtcG2C_UpdateBuyGoldAndFatigueInfo roPtc)
+ {
+ DlgBase<XPurchaseView, XPurchaseBehaviour>.singleton.UpdatePlayerBuyInfo(roPtc.Data);
+ XPurchaseDocument specificDocument = XDocuments.GetSpecificDocument<XPurchaseDocument>(XPurchaseDocument.uuID);
+ specificDocument.InitPurchaseInfo(roPtc.Data);
+ }
+ }
+}