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

34 lines
476 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 cEntity;
2011-10-03 18:41:19 +00:00
class cPacket_DestroyEntity : public cPacket
{
public:
cPacket_DestroyEntity()
: m_UniqueID( 0 )
{ m_PacketID = E_DESTROY_ENT; }
cPacket_DestroyEntity(cEntity* a_Entity);
virtual cPacket* Clone() const { return new cPacket_DestroyEntity(*this); }
virtual void Serialize(AString & a_Data) const override;
2011-10-03 18:41:19 +00:00
int m_UniqueID;
2011-10-03 18:41:19 +00:00
static const unsigned int c_Size = 1 + 4;
};