mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-19 20:16:10 +08:00
First version of the SOurce SDK 2013
This commit is contained in:
30
game/client/hud_chat.h
Normal file
30
game/client/hud_chat.h
Normal file
@ -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
|
Reference in New Issue
Block a user