summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_EntityEquipment.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/packets/cPacket_EntityEquipment.h')
-rw-r--r--source/packets/cPacket_EntityEquipment.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/source/packets/cPacket_EntityEquipment.h b/source/packets/cPacket_EntityEquipment.h
index 1358db7ee..4beda6063 100644
--- a/source/packets/cPacket_EntityEquipment.h
+++ b/source/packets/cPacket_EntityEquipment.h
@@ -3,6 +3,9 @@
#include "cPacket.h"
+
+
+
class cPacket_EntityEquipment : public cPacket
{
public:
@@ -15,8 +18,8 @@ public:
cPacket_EntityEquipment( const cPacket_EntityEquipment & a_Copy );
virtual cPacket* Clone() const { return new cPacket_EntityEquipment(*this); }
- bool Parse(cSocket & a_Socket);
- bool Send(cSocket & a_Socket);
+ virtual int Parse(const char * a_Data, int a_Size) override;
+ virtual void Serialize(AString & a_Data) const override;
int m_UniqueID;
short m_Slot; // 0 = hold 1-4 = armor
@@ -24,4 +27,8 @@ public:
short m_Short;
static const unsigned int c_Size = 1 + 4 + 2 + 2 + 2;
-}; \ No newline at end of file
+};
+
+
+
+