diff options
Diffstat (limited to 'game/server/NavUI/AttributeTool.h')
| -rw-r--r-- | game/server/NavUI/AttributeTool.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/game/server/NavUI/AttributeTool.h b/game/server/NavUI/AttributeTool.h new file mode 100644 index 0000000..c501fd8 --- /dev/null +++ b/game/server/NavUI/AttributeTool.h @@ -0,0 +1,23 @@ +//-------------------------------------------------------------------------------------------------------- +//========= Copyright Valve Corporation, All rights reserved. ============// + +#ifndef ATTRIBUTETOOL_H +#define ATTRIBUTETOOL_H + +#include "NavUI.h" +#include "nav.h" + +#ifdef SERVER_USES_VGUI + +//-------------------------------------------------------------------------------------------------------- +class AttributeToolPanel : public CNavUIToolPanel +{ + DECLARE_CLASS_SIMPLE( AttributeToolPanel, CNavUIToolPanel ); + +public: + AttributeToolPanel( vgui::Panel *parent, const char *toolName ); +}; + +#endif // SERVER_USES_VGUI + +#endif // ATTRIBUTETOOL_H |