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
650 B
24 lines
650 B
5 years ago
|
//--------------------------------------------------------------------------------------------------------
|
||
|
//========= 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
|