1
0
cuberite-2a/source/packets/cPacket_WindowClose.h
mtilden@gmail.com bf838238e4 - Make Color was using 2 extra characters which took 2 characters off the 16 max (including color codes) for scoreboard display
- Added xC9 PlayerListItem packet and added code for player names to be added and removed from the scoreboard (need a catch-all for client disconnects: crashes, timeouts, etc)
 - Changed wid wording to a_WindowType

git-svn-id: http://mc-server.googlecode.com/svn/trunk@113 0a769ca7-a7f5-676a-18bf-c427514a06d6
2011-12-26 01:07:35 +00:00

20 lines
447 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; // m_Close == cWindow WindowType number
static const unsigned int c_Size = 1 + 1;
};