summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_UseEntity.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/packets/cPacket_UseEntity.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/source/packets/cPacket_UseEntity.h b/source/packets/cPacket_UseEntity.h
index 6e5bf5691..a81352664 100644
--- a/source/packets/cPacket_UseEntity.h
+++ b/source/packets/cPacket_UseEntity.h
@@ -1,8 +1,12 @@
+
#pragma once
#include "cPacket.h"
+
+
+
class cPacket_UseEntity : public cPacket
{
public:
@@ -13,11 +17,15 @@ public:
{ m_PacketID = E_USE_ENTITY; }
virtual cPacket* Clone() const { return new cPacket_UseEntity(*this); }
- bool Parse(cSocket & a_Socket);
+ virtual int Parse(const char * a_Data, int a_Size) override;
- int m_UniqueID;
- int m_TargetID;
+ int m_UniqueID;
+ int m_TargetID;
bool m_bLeftClick;
static const unsigned int c_Size = 1 + 4 + 4 + 1;
-}; \ No newline at end of file
+};
+
+
+
+