Files
cuberite-2a/source/packets/cPacket_13.cpp
T

21 lines
366 B
C++
Raw Normal View History

#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
2011-10-03 18:41:19 +00:00
#include "cPacket_13.h"
int cPacket_13::Parse(const char * a_Data, int a_Size)
2011-10-03 18:41:19 +00:00
{
int TotalBytes = 0;
HANDLE_PACKET_READ(ReadInteger, m_EntityID, TotalBytes);
HANDLE_PACKET_READ(ReadByte , m_ActionID, TotalBytes);
return TotalBytes;
}
2011-10-03 18:41:19 +00:00