diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReconnectSyncNotify.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReconnectSyncNotify.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReconnectSyncNotify.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReconnectSyncNotify.cs new file mode 100644 index 00000000..cd6597ea --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcG2C_ReconnectSyncNotify.cs @@ -0,0 +1,14 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcG2C_ReconnectSyncNotify
+ {
+ public static void Process(PtcG2C_ReconnectSyncNotify roPtc)
+ {
+ XSingleton<XDebug>.singleton.AddGreenLog("Got reconnected data!", null, null, null, null, null);
+ XSingleton<XReconnection>.singleton.GetReconnectData(roPtc);
+ }
+ }
+}
|