summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_Ping.h
blob: 68b96faa52c3b52df78d650c72a49d08acecc125 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "cPacket.h"


class cPacket_Ping : public cPacket
{
public:
	cPacket_Ping()
	{ m_PacketID = E_PING; }
	virtual cPacket* Clone() const { return new cPacket_Ping(*this); }

	bool Parse(cSocket & a_Socket) { (void)a_Socket; return true; }

	static const unsigned int c_Size = 1;
};