diff options
Diffstat (limited to 'source/packets/cPacket_Flying.h')
-rw-r--r-- | source/packets/cPacket_Flying.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/source/packets/cPacket_Flying.h b/source/packets/cPacket_Flying.h index 63395204e..19b0ee213 100644 --- a/source/packets/cPacket_Flying.h +++ b/source/packets/cPacket_Flying.h @@ -1,8 +1,12 @@ +
#pragma once
#include "cPacket.h"
+
+
+
class cPacket_Flying : public cPacket
{
public:
@@ -12,8 +16,12 @@ public: { m_PacketID = E_FLYING; }
virtual cPacket* Clone() const { return new cPacket_Flying(*this); }
- bool Parse(cSocket & a_Socket);
+ virtual int Parse(const char * a_Data, int a_Size) override;
bool m_bFlying;
static const unsigned int c_Size = 2;
};
+
+
+
+
|