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

27 lines
591 B
C++
Raw Normal View History

2011-10-03 18:41:19 +00:00
#pragma once
#include "cPacket.h"
2011-12-21 20:42:34 +00:00
#include "../BlockID.h"
2011-10-03 18:41:19 +00:00
class cPacket_AddToInventory : public cPacket
{
public:
cPacket_AddToInventory()
2011-12-21 20:42:34 +00:00
: m_ItemType( E_ITEM_EMPTY )
2011-10-03 18:41:19 +00:00
, m_Count( 0 )
, m_Life( 0 )
{ m_PacketID = E_ADD_TO_INV; }
virtual cPacket* Clone() const { return new cPacket_AddToInventory(*this); }
// _X: This was unimplemented, do we need it?:
// bool Parse( cSocket & a_Socket );
virtual void Serialize(AString & a_Data) const override;
2011-10-03 18:41:19 +00:00
2011-12-21 20:42:34 +00:00
ENUM_ITEM_ID m_ItemType;
2011-10-03 18:41:19 +00:00
char m_Count;
short m_Life;
2011-12-21 20:42:34 +00:00
static const unsigned int c_Size = 1;
};