iw4x-client/src/Components/Modules/Chat.hpp

19 lines
261 B
C++
Raw Normal View History

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