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.
24 lines
339 B
24 lines
339 B
8 years ago
|
//++ 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
|