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.
23 lines
375 B
23 lines
375 B
8 years ago
|
//++ BulliT
|
||
|
|
||
|
#if !defined(_AG_NEXTMAP_HUD_)
|
||
|
#define _AG_NEXTMAP_HUD_
|
||
|
|
||
|
class AgHudNextmap: public CHudBase
|
||
|
{
|
||
|
public:
|
||
|
int Init( void );
|
||
|
int VidInit( void );
|
||
|
int Draw(float flTime);
|
||
|
void Reset(void);
|
||
|
int MsgFunc_Nextmap(const char *pszName, int iSize, void *pbuf);
|
||
|
|
||
|
private:
|
||
|
float m_flTurnoff;
|
||
|
char m_szNextmap[32];
|
||
|
};
|
||
|
|
||
|
#endif //_AG_NEXTMAP_HUD_
|
||
|
|
||
|
//-- Martin Webrant
|