summaryrefslogblamecommitdiffstats
path: root/source/packets/cPacket_WindowClose.h
blob: de40ab446c799c5e9bf6560d5e5dc08ee6bb7690 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                          




                                            

                                                                                 
                                                            

                                                                
                        




  

#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;
};