summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_Ping.h
blob: f74385a8192bbbccfaca445713b18ca48140b510 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

#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); }

	virtual int Parse(cByteBuffer & a_Buffer) override {return 0; }

	static const unsigned int c_Size = 1;
};