diff options
Diffstat (limited to 'game/client/hud_chat.h')
| -rw-r--r-- | game/client/hud_chat.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/game/client/hud_chat.h b/game/client/hud_chat.h new file mode 100644 index 0000000..ff968fd --- /dev/null +++ b/game/client/hud_chat.h @@ -0,0 +1,30 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef HUD_CHAT_H +#define HUD_CHAT_H +#ifdef _WIN32 +#pragma once +#endif + +#include <hud_basechat.h> + +class CHudChat : public CBaseHudChat +{ + DECLARE_CLASS_SIMPLE( CHudChat, CBaseHudChat ); + +public: + CHudChat( const char *pElementName ); + + virtual void Init( void ); + + void MsgFunc_SayText(bf_read &msg); + void MsgFunc_SayText2( bf_read &msg ); + void MsgFunc_TextMsg(bf_read &msg); +}; + +#endif //HUD_CHAT_H
\ No newline at end of file |