2012-01-29 11:28:19 -08:00
|
|
|
|
|
|
|
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
|
|
|
|
|
2011-10-03 11:41:19 -07:00
|
|
|
#include "cPacket_13.h"
|
|
|
|
|
2012-01-29 11:28:19 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-07 12:49:52 -08:00
|
|
|
int cPacket_13::Parse(const char * a_Data, int a_Size)
|
2011-10-03 11:41:19 -07:00
|
|
|
{
|
2012-02-07 12:49:52 -08:00
|
|
|
int TotalBytes = 0;
|
|
|
|
HANDLE_PACKET_READ(ReadInteger, m_EntityID, TotalBytes);
|
|
|
|
HANDLE_PACKET_READ(ReadByte , m_ActionID, TotalBytes);
|
|
|
|
return TotalBytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-03 11:41:19 -07:00
|
|
|
|