blob: a81352664a76e605fddd061f7be043a22556554e (
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(const char * a_Data, int a_Size) override;
int m_UniqueID;
int m_TargetID;
bool m_bLeftClick;
static const unsigned int c_Size = 1 + 4 + 4 + 1;
};
|