summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_Chat.h
blob: ff5c70b5b622e967cea3609720ca930f9f319c6c (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

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