summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_WindowClose.h
blob: 0851fa20df1acfc72dc08df6895eba53dd612e4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

#pragma once

#include "cPacket.h"





class cPacket_WindowClose : public cPacket
{
public:
	cPacket_WindowClose()
		: m_WindowID( 0 )
	{
		m_PacketID = E_WINDOW_CLOSE;
	}
	
	virtual cPacket* Clone() const { return new cPacket_WindowClose(*this); }

	virtual int Parse(cByteBuffer & a_Buffer) override;

	char m_WindowID;
};