//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============ // // Purpose: // // $NoKeywords: $ //============================================================================= #ifndef VGUI_MENUSEPARATOR_H #define VGUI_MENUSEPARATOR_H #include #include namespace vgui { class VGUIAPI MenuSeparator : public Label { public: MenuSeparator(const char* text); protected: virtual void paintBackground(); }; } #endif