blob: f4daccf9af12f8011fea99ca93b6e8d55f004805 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
}
}
}
|