summaryrefslogblamecommitdiffstats
path: root/source/packets/cPacket_Ping.h
blob: abab822a4576f716b4fd5aa26c3b094aa26c8a36 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                           
#pragma once

#include "cPacket.h"
#include "PacketID.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;
};