diff options
Diffstat (limited to '')
-rw-r--r-- | source/packets/cPacket_WindowClose.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/source/packets/cPacket_WindowClose.h b/source/packets/cPacket_WindowClose.h index a2f09fd09..1063896ff 100644 --- a/source/packets/cPacket_WindowClose.h +++ b/source/packets/cPacket_WindowClose.h @@ -1,8 +1,12 @@ +
#pragma once
#include "cPacket.h"
+
+
+
class cPacket_WindowClose : public cPacket
{
public:
@@ -11,10 +15,14 @@ public: { m_PacketID = E_WINDOW_CLOSE; }
virtual cPacket* Clone() const { return new cPacket_WindowClose(*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;
char m_Close; // m_Close == cWindow WindowType number
static const unsigned int c_Size = 1 + 1;
-};
\ No newline at end of file +};
+
+
+
+
|