summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_UseEntity.h
blob: 799122bf939ea86e5e8616b0ebf3b097c925dbd5 (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
24
25
26
27
28
29
30
31

#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); }

	virtual int Parse(cByteBuffer & a_Buffer) override;

	int  m_UniqueID;
	int  m_TargetID;
	bool m_bLeftClick;

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