summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_UseEntity.h
blob: 6e5bf5691094e3d8eb96699899b2f72e9e2838c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include "cPacket.h"


class cPacket_UseEntity : public cPacket
{
public:
	cPacket_UseEntity()
		: m_UniqueID( 0 )
		, m_TargetID( 0 )
		, m_bLeftClick( false )
	{ m_PacketID = E_USE_ENTITY;  }
	virtual cPacket* Clone() const { return new cPacket_UseEntity(*this); }

	bool Parse(cSocket & a_Socket);

	int m_UniqueID;
	int m_TargetID;
	bool m_bLeftClick;

	static const unsigned int c_Size = 1 + 4 + 4 + 1;
};