summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_13.cpp
blob: 5e649fbd9cfc1de915a2074b6497893d920aa3be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "cPacket_13.h"

bool cPacket_13::Parse(cSocket & a_Socket)
{
	m_Socket = a_Socket;

	if( !ReadInteger( m_EntityID ) )	return false;
	if( !ReadByte	( m_ActionID ) )	return false;
	return true;
}