19 lines
261 B
C++
19 lines
261 B
C++
|
#pragma once
|
||
|
|
||
|
namespace Components
|
||
|
{
|
||
|
class Chat : public Component
|
||
|
{
|
||
|
public:
|
||
|
Chat();
|
||
|
|
||
|
private:
|
||
|
static bool SendChat;
|
||
|
|
||
|
static const char* EvaluateSay(char* text, Game::gentity_t* player);
|
||
|
|
||
|
static void PreSayStub();
|
||
|
static void PostSayStub();
|
||
|
};
|
||
|
}
|