#ifndef VGUI_BUTTONGROUP_H #define VGUI_BUTTONGROUP_H #include #include namespace vgui { class Button; class VGUIAPI ButtonGroup { public: virtual void addButton(Button* button); virtual void setSelected(Button* button); protected: Dar _buttonDar; }; } #endif