1
0
Fork 0
cuberite-2a/source/packets/cPacket_WindowOpen.cpp

22 lines
394 B
C++

#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "cPacket_WindowOpen.h"
void cPacket_WindowOpen::Serialize(AString & a_Data) const
{
AppendByte (a_Data, m_PacketID);
AppendByte (a_Data, m_WindowID);
AppendByte (a_Data, m_InventoryType);
AppendString16(a_Data, m_WindowTitle);
AppendByte (a_Data, m_NumSlots);
}