Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
960 B

  1. //====== Copyright � 1996-2005, Valve Corporation, All rights reserved. =======
  2. //
  3. // Purpose: Core Movie Maker UI API
  4. //
  5. //=============================================================================
  6. #ifndef TOOLHELPMENUBUTTON_H
  7. #define TOOLHELPMENUBUTTON_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. //-----------------------------------------------------------------------------
  12. // forward declarations
  13. //-----------------------------------------------------------------------------
  14. namespace vgui
  15. {
  16. class Panel;
  17. }
  18. class CToolMenuButton;
  19. //-----------------------------------------------------------------------------
  20. // Global function to create the switch menu
  21. //-----------------------------------------------------------------------------
  22. CToolMenuButton* CreateToolHelpMenuButton( char const *toolName, char const *helpBinding, vgui::Panel *parent, const char *panelName, const char *text, vgui::Panel *pActionTarget );
  23. #endif // TOOLHELPMENUBUTTON_H