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.
23 lines
650 B
23 lines
650 B
//-------------------------------------------------------------------------------------------------------- |
|
//========= 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
|
|
|