2012-06-14 06:06:06 -07:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
|
|
|
#include "cPacket_ItemSwitch.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-08-17 03:18:07 -07:00
|
|
|
int cPacket_ItemSwitch::Parse(cByteBuffer & a_Buffer)
|
2012-06-14 06:06:06 -07:00
|
|
|
{
|
|
|
|
int TotalBytes = 0;
|
2012-08-17 03:18:07 -07:00
|
|
|
HANDLE_PACKET_READ(ReadBEShort, m_SlotNum, TotalBytes);
|
2012-06-14 06:06:06 -07:00
|
|
|
return TotalBytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cPacket_ItemSwitch::Serialize(AString & a_Data) const
|
|
|
|
{
|
|
|
|
AppendByte (a_Data, m_PacketID);
|
|
|
|
AppendShort(a_Data, m_SlotNum);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|