You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
628 B
30 lines
628 B
//========= Copyright © 1996-2005, 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:
|
|
explicit 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
|