diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeSupplementNtf.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeSupplementNtf.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeSupplementNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeSupplementNtf.cs new file mode 100644 index 00000000..387eaabe --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ChangeSupplementNtf.cs @@ -0,0 +1,19 @@ +using System;
+using KKSG;
+using XMainClient.UI;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ChangeSupplementNtf
+ {
+ public static void Process(PtcG2C_ChangeSupplementNtf roPtc)
+ {
+ bool flag = roPtc.Data.errorcode > ErrorCode.ERR_SUCCESS;
+ if (flag)
+ {
+ XSingleton<UiUtility>.singleton.ShowSystemTip(roPtc.Data.errorcode, "fece00");
+ }
+ }
+ }
+}
|