mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-03-12 13:31:33 +00:00
22 lines
355 B
C++
22 lines
355 B
C++
//++ BulliT
|
|
|
|
#if !defined(_AG_LONGJUMP_HUD_)
|
|
#define _AG_LONGJUMP_HUD_
|
|
|
|
class AgHudLongjump: public CHudBase
|
|
{
|
|
public:
|
|
int Init( void );
|
|
int VidInit( void );
|
|
int Draw(float flTime);
|
|
void Reset(void);
|
|
int MsgFunc_Longjump(const char *pszName, int iSize, void *pbuf);
|
|
|
|
private:
|
|
float m_flTurnoff;
|
|
};
|
|
|
|
#endif //_AG_LONGJUMP_HUD_
|
|
|
|
//-- Martin Webrant
|