Files
cuberite-2a/source/packets/cPacket_WindowOpen.cpp
T
2012-02-07 20:49:52 +00:00

22 lines
415 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);
}