summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldChannelLeftTimesNtf.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldChannelLeftTimesNtf.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldChannelLeftTimesNtf.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldChannelLeftTimesNtf.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldChannelLeftTimesNtf.cs
new file mode 100644
index 00000000..585f2739
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_WorldChannelLeftTimesNtf.cs
@@ -0,0 +1,14 @@
+using System;
+using XMainClient.UI.UICommon;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_WorldChannelLeftTimesNtf
+ {
+ public static void Process(PtcG2C_WorldChannelLeftTimesNtf roPtc)
+ {
+ DlgBase<XChatView, XChatBehaviour>.singleton._worldSpeadTimes = roPtc.Data.leftTimes;
+ DlgBase<XChatView, XChatBehaviour>.singleton.RefeshWorldSpeakTimes();
+ }
+ }
+}