summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_PlayerPosition.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/packets/cPacket_PlayerPosition.h23
1 files changed, 19 insertions, 4 deletions
diff --git a/source/packets/cPacket_PlayerPosition.h b/source/packets/cPacket_PlayerPosition.h
index 87fc127d5..f883b6a4d 100644
--- a/source/packets/cPacket_PlayerPosition.h
+++ b/source/packets/cPacket_PlayerPosition.h
@@ -1,9 +1,19 @@
+
#pragma once
#include "cPacket.h"
+
+
+
+
class cPlayer;
+
+
+
+
+
class cPacket_PlayerPosition : public cPacket
{
public:
@@ -17,13 +27,18 @@ public:
{ m_PacketID = E_PLAYERPOS; }
virtual cPacket* Clone() const { return new cPacket_PlayerPosition(*this); }
- virtual bool Parse(cSocket & a_Socket);
- virtual bool Send(cSocket & a_Socket);
+ virtual int Parse(const char * a_Data, int a_Size) override;
+ virtual void Serialize(AString & a_Data) const override;
double m_PosX;
double m_PosY;
double m_Stance;
double m_PosZ;
- bool m_bFlying; // Yeah.. wtf
+ bool m_bFlying; // Yeah.. wtf
+
static const unsigned int c_Size = 34;
-}; \ No newline at end of file
+};
+
+
+
+