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

19 lines
464 B
C++
Raw Normal View History

2011-10-03 18:41:19 +00:00
#pragma once
#include "cPacket.h"
#include "PacketID.h"
class cPacket_KeepAlive : public cPacket
{
public:
cPacket_KeepAlive() { m_PacketID = E_KEEP_ALIVE; }
2011-12-27 18:39:06 +00:00
cPacket_KeepAlive(int a_PingID) { m_KeepAliveID = a_PingID; }
2011-10-03 18:41:19 +00:00
virtual cPacket* Clone() const { return new cPacket_KeepAlive(*this); }
virtual bool Parse(cSocket & a_Socket);
virtual bool Send(cSocket & a_Socket);
int m_KeepAliveID;
static const unsigned int c_Size = 1 + 4;
};