1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 12:06:07 +08:00
Files
hl2sdk/game/client/ihudlcd.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
469 B
C
Raw Normal View History

//====== Copyright © 1996-2005, Valve Corporation, All rights reserved. =======
//
// Purpose:
//
//=============================================================================
#ifndef IHUDLCD_H
#define IHUDLCD_H
#ifdef _WIN32
#pragma once
#endif
class IHudLCD
{
public:
virtual void SetGlobalStat( char const *name, char const *value ) = 0;
virtual void AddChatLine( char const *txt ) = 0;
};
extern IHudLCD *hudlcd;
#endif // IHUDLCD_H