mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-03-11 04:51:23 +00:00
24 lines
339 B
C++
24 lines
339 B
C++
//++ BulliT
|
|
|
|
#if !defined(_AG_CUSTOMTIMER_HUD_)
|
|
#define _AG_CUSTOMTIMER_HUD_
|
|
|
|
class AgHudCustomTimer: public CHudBase
|
|
{
|
|
public:
|
|
int Init( void );
|
|
int VidInit( void );
|
|
int Draw(float flTime);
|
|
void Reset(void);
|
|
|
|
private:
|
|
float m_flTurnoff;
|
|
|
|
public:
|
|
void UserCmd_CustomTimer();
|
|
};
|
|
|
|
#endif //_AG_CUSTOMTIMER_HUD_
|
|
|
|
//-- Martin Webrant
|