bf838238e4
- 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
20 lines
447 B
C++
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;
|
|
}; |