1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-20 12:36:05 +08:00
Files
hl2sdk/game/server/NavUI/AttributeTool.h
2025-02-19 18:39:00 -05:00

24 lines
650 B
C++

//--------------------------------------------------------------------------------------------------------
//========= 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