mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-03-12 13:31:33 +00:00
24 lines
452 B
C++
24 lines
452 B
C++
//++ BulliT
|
|
|
|
#if !defined(_AG_VGUI_WINAMP_)
|
|
#define _AG_VGUI_WINAMP_
|
|
|
|
#include<stdarg.h>
|
|
#include<VGUI_Panel.h>
|
|
|
|
class AGVGuiWinamp : public vgui::Panel
|
|
{
|
|
private:
|
|
Label* m_pLabel;
|
|
public:
|
|
AGVGuiWinamp(int x,int y,int wide,int tall);
|
|
public:
|
|
void UserCmd_Winamp();
|
|
virtual void paintBackground();
|
|
virtual int KeyInput(int down, int keynum, const char *pszCurrentBinding);
|
|
};
|
|
|
|
#endif //_AG_VGUI_WINAMP_
|
|
|
|
//-- Martin Webrant
|