summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_WindowClose.h
blob: de40ab446c799c5e9bf6560d5e5dc08ee6bb7690 (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
29

#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;
	virtual void Serialize(AString & a_Data) const override;

	char m_WindowID;
};