diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_KeepAlivePingReq.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_KeepAlivePingReq.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_KeepAlivePingReq.cs b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_KeepAlivePingReq.cs new file mode 100644 index 00000000..f4daccf9 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/PTC/Process/Process_PtcT2C_KeepAlivePingReq.cs @@ -0,0 +1,15 @@ +using System;
+using XUtliPoolLib;
+
+namespace XMainClient
+{
+ internal class Process_PtcT2C_KeepAlivePingReq
+ {
+ public static void Process(PtcT2C_KeepAlivePingReq roPtc)
+ {
+ PtcC2T_KeepAlivePingAck proto = new PtcC2T_KeepAlivePingAck();
+ XSingleton<XClientNetwork>.singleton.Send(proto);
+ XSingleton<XDebug>.singleton.AddLog("Keep alive ack", XDebugChannel.XDebug_Network.ToString(), null, null, null, null, XDebugColor.XDebug_None);
+ }
+ }
+}
|