diff options
Diffstat (limited to 'source/packets/cPacket_ItemSwitch.h')
-rw-r--r-- | source/packets/cPacket_ItemSwitch.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/source/packets/cPacket_ItemSwitch.h b/source/packets/cPacket_ItemSwitch.h index c1342c0dd..00e37b9c8 100644 --- a/source/packets/cPacket_ItemSwitch.h +++ b/source/packets/cPacket_ItemSwitch.h @@ -1,8 +1,12 @@ +
#pragma once
#include "cPacket.h"
+
+
+
class cPacket_ItemSwitch : public cPacket
{
public:
@@ -11,9 +15,14 @@ public: { m_PacketID = E_ITEM_SWITCH; }
virtual cPacket* Clone() const { return new cPacket_ItemSwitch(*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;
short m_SlotNum;
+
static const unsigned int c_Size = 1 + 2;
-};
\ No newline at end of file +};
+
+
+
+
|