mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-04 00:23:25 +08:00
29 lines
605 B
C
29 lines
605 B
C
|
//========= Copyright <20> 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:
|
|||
|
CHudChat( const char *pElementName );
|
|||
|
|
|||
|
virtual void Init( void );
|
|||
|
|
|||
|
void MsgFunc_SayText(bf_read &msg);
|
|||
|
void MsgFunc_TextMsg(bf_read &msg);
|
|||
|
};
|
|||
|
|
|||
|
#endif //HUD_CHAT_H
|