summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_BlockDig.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/packets/cPacket_BlockDig.h23
1 files changed, 14 insertions, 9 deletions
diff --git a/source/packets/cPacket_BlockDig.h b/source/packets/cPacket_BlockDig.h
index 7f6e1f4d2..56ddfa9ca 100644
--- a/source/packets/cPacket_BlockDig.h
+++ b/source/packets/cPacket_BlockDig.h
@@ -15,13 +15,18 @@ public:
{ m_PacketID = E_BLOCK_DIG; } //tolua_export
virtual cPacket* Clone() const { return new cPacket_BlockDig(*this); } //tolua_export
- bool Parse(cSocket & a_Socket);
- bool Send(cSocket & a_Socket);
-
- char m_Status; //tolua_export
- int m_PosX; //tolua_export
- char m_PosY; //tolua_export
- int m_PosZ; //tolua_export
- char m_Direction; //tolua_export
+ virtual int Parse(const char * a_Data, int a_Size) override;
+ virtual void Serialize(AString & a_Data) const override;
+
+ char m_Status; // tolua_export
+ int m_PosX; // tolua_export
+ char m_PosY; // tolua_export
+ int m_PosZ; // tolua_export
+ char m_Direction; // tolua_export
+
static const unsigned int c_Size = 12;
-}; //tolua_export \ No newline at end of file
+}; //tolua_export
+
+
+
+