20 lines
420 B
C
20 lines
420 B
C
|
#pragma once
|
||
|
|
||
|
#include "cPacket.h"
|
||
|
#include "PacketID.h"
|
||
|
|
||
|
class cPacket_WindowClose : public cPacket
|
||
|
{
|
||
|
public:
|
||
|
cPacket_WindowClose()
|
||
|
: m_Close( 0 )
|
||
|
{ m_PacketID = E_WINDOW_CLOSE; }
|
||
|
virtual cPacket* Clone() const { return new cPacket_WindowClose(*this); }
|
||
|
|
||
|
bool Parse(cSocket & a_Socket);
|
||
|
bool Send(cSocket & a_Socket);
|
||
|
|
||
|
char m_Close; // 1 = close
|
||
|
|
||
|
static const unsigned int c_Size = 1 + 1;
|
||
|
};
|