diff options
Diffstat (limited to 'public/toolutils/ToolEditMenuButton.h')
| -rw-r--r-- | public/toolutils/ToolEditMenuButton.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/public/toolutils/ToolEditMenuButton.h b/public/toolutils/ToolEditMenuButton.h new file mode 100644 index 0000000..8ddcd7c --- /dev/null +++ b/public/toolutils/ToolEditMenuButton.h @@ -0,0 +1,35 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Standard file menu +// +//============================================================================= + + +#ifndef TOOLEDITMENUBUTTON_H +#define TOOLEDITMENUBUTTON_H + +#ifdef _WIN32 +#pragma once +#endif + + +//----------------------------------------------------------------------------- +// forward declarations +//----------------------------------------------------------------------------- +namespace vgui +{ +class Panel; +} + +class CToolMenuButton; + + +//----------------------------------------------------------------------------- +// Global function to create the switch menu +//----------------------------------------------------------------------------- +CToolMenuButton* CreateToolEditMenuButton( vgui::Panel *parent, const char *panelName, + const char *text, vgui::Panel *pActionTarget ); + + +#endif // TOOLEDITMENUBUTTON_H + |