Team Fortress 2 Source Code as on 22/4/2020
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.

24 lines
621 B

  1. //--------------------------------------------------------------------------------------------------------
  2. //========= Copyright Valve Corporation, All rights reserved. ============//
  3. #ifndef MESHTOOL_H
  4. #define MESHTOOL_H
  5. #ifdef SERVER_USES_VGUI
  6. #include "NavUI.h"
  7. #include "nav.h"
  8. //--------------------------------------------------------------------------------------------------------
  9. class MeshToolPanel : public CNavUIToolPanel
  10. {
  11. DECLARE_CLASS_SIMPLE( MeshToolPanel, CNavUIToolPanel );
  12. public:
  13. MeshToolPanel( vgui::Panel *parent, const char *toolName );
  14. };
  15. #endif // SERVER_USES_VGUI
  16. #endif // MESHTOOL_H