summaryrefslogblamecommitdiffstats
path: root/source/packets/cPacket_Ping.h
blob: 0a0609aeb06109f28af5a98c15ff0da798e43258 (plain) (tree)
1
2
3
4
5
6
7
8
9
 


                     
 
 


 






                                                                           
                                                                                 

                                              




   

#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(const char * a_Data, int a_Size) override {return 0; }

	static const unsigned int c_Size = 1;
};