summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_WindowClose.h
blob: a2f09fd095e3dd2877d5acf6aa1732e330771b04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include "cPacket.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; // m_Close == cWindow WindowType number

	static const unsigned int c_Size = 1 + 1;
};