summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/PtcT2C_KeepAlivePingReq.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/PTC/PtcT2C_KeepAlivePingReq.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/PTC/PtcT2C_KeepAlivePingReq.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/PTC/PtcT2C_KeepAlivePingReq.cs b/Client/Assets/Scripts/XMainClient/PTC/PtcT2C_KeepAlivePingReq.cs
new file mode 100644
index 00000000..45c4e50c
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/PTC/PtcT2C_KeepAlivePingReq.cs
@@ -0,0 +1,26 @@
+using System;
+using System.IO;
+
+namespace XMainClient
+{
+ internal class PtcT2C_KeepAlivePingReq : Protocol
+ {
+ public override uint GetProtoType()
+ {
+ return 49142u;
+ }
+
+ public override void Serialize(MemoryStream stream)
+ {
+ }
+
+ public override void DeSerialize(MemoryStream stream)
+ {
+ }
+
+ public override void Process()
+ {
+ Process_PtcT2C_KeepAlivePingReq.Process(this);
+ }
+ }
+}