forked from valve/halflife-sdk
24 lines
308 B
C
24 lines
308 B
C
|
|
||
|
#ifndef VGUI_MENUITEM_H
|
||
|
#define VGUI_MENUITEM_H
|
||
|
|
||
|
#include<VGUI.h>
|
||
|
#include<VGUI_Button.h>
|
||
|
|
||
|
namespace vgui
|
||
|
{
|
||
|
|
||
|
class Menu;
|
||
|
|
||
|
class VGUIAPI MenuItem : public Button
|
||
|
{
|
||
|
public:
|
||
|
MenuItem(const char* text);
|
||
|
MenuItem(const char* text,Menu* subMenu);
|
||
|
protected:
|
||
|
Menu* _subMenu;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|