Files
cuberite-2a/source/packets/cPacket_Ping.h
T

25 lines
343 B
C++
Raw Normal View History

2011-10-03 18:41:19 +00:00
#pragma once
#include "cPacket.h"
2011-10-03 18:41:19 +00:00
2011-10-03 18:41:19 +00:00
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; }
2011-10-03 18:41:19 +00:00
static const unsigned int c_Size = 1;
};