NS/main/source/includes/vgui/include/VGUI_MenuSeparator.h

27 lines
486 B
C
Raw Normal View History

2014-12-16 13:36:27 +00:00
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#ifndef VGUI_MENUSEPARATOR_H
#define VGUI_MENUSEPARATOR_H
#include<VGUI.h>
#include<VGUI_Label.h>
namespace vgui
{
class VGUIAPI MenuSeparator : public Label
{
public:
MenuSeparator(const char* text);
protected:
virtual void paintBackground();
};
}
2014-06-02 10:22:49 +00:00
#endif