git-svn-id: http://mc-server.googlecode.com/svn/trunk@800 0a769ca7-a7f5-676a-18bf-c427514a06d6
25 lines
280 B
C++
25 lines
280 B
C++
|
|
#pragma once
|
|
|
|
#include "cPacket.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cPacket_Chat :
|
|
public cPacket
|
|
{
|
|
public:
|
|
cPacket_Chat() { m_PacketID = E_CHAT; }
|
|
virtual cPacket* Clone() const { return new cPacket_Chat(*this); }
|
|
|
|
virtual int Parse(cByteBuffer & a_Buffer) override;
|
|
|
|
AString m_Message;
|
|
};
|
|
|
|
|
|
|
|
|