2012-02-07 15:49:52 -05:00
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "cPacket.h"
|
2012-01-27 09:04:28 -05:00
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
|
2012-02-07 15:49:52 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
class cPacket_Ping : public cPacket
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cPacket_Ping()
|
|
|
|
{ m_PacketID = E_PING; }
|
|
|
|
virtual cPacket* Clone() const { return new cPacket_Ping(*this); }
|
|
|
|
|
2012-02-07 15:49:52 -05:00
|
|
|
virtual int Parse(const char * a_Data, int a_Size) override {return 0; }
|
2011-10-03 14:41:19 -04:00
|
|
|
|
|
|
|
static const unsigned int c_Size = 1;
|
2012-02-07 15:49:52 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|