summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/PTC/PtcT2C_KeepAlivePingReq.cs
blob: 45c4e50ca27ed6d07292da54c2f9a15f89c77862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
		}
	}
}