summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaBeginNew.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaBeginNew.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaBeginNew.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaBeginNew.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaBeginNew.cs
new file mode 100644
index 00000000..b7b2e386
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcM2C_NoticeGuildArenaBeginNew.cs
@@ -0,0 +1,15 @@
+using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcM2C_NoticeGuildArenaBeginNew
+ {
+ public static void Process(PtcM2C_NoticeGuildArenaBeginNew roPtc)
+ {
+ XSingleton<XDebug>.singleton.AddGreenLog("NoticeGuildArenaBeginNew : ", roPtc.Data.isstart.ToString(), null, null, null, null);
+ XGuildArenaDocument specificDocument = XDocuments.GetSpecificDocument<XGuildArenaDocument>(XGuildArenaDocument.uuID);
+ specificDocument.bHasAvailableArenaIcon = roPtc.Data.isstart;
+ }
+ }
+}