summaryrefslogtreecommitdiff
path: root/game/server/NavUI/AttributeTool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'game/server/NavUI/AttributeTool.cpp')
-rw-r--r--game/server/NavUI/AttributeTool.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/game/server/NavUI/AttributeTool.cpp b/game/server/NavUI/AttributeTool.cpp
new file mode 100644
index 0000000..fecf251
--- /dev/null
+++ b/game/server/NavUI/AttributeTool.cpp
@@ -0,0 +1,25 @@
+//--------------------------------------------------------------------------------------------------------
+//========= Copyright Valve Corporation, All rights reserved. ============//
+
+#include "cbase.h"
+
+#include "AttributeTool.h"
+#include "nav_mesh.h"
+
+// memdbgon must be the last include file in a .cpp file!!!
+#include "tier0/memdbgon.h"
+
+#ifdef SERVER_USES_VGUI
+
+using namespace vgui;
+
+
+//--------------------------------------------------------------------------------------------------------
+AttributeToolPanel::AttributeToolPanel( vgui::Panel *parent, const char *toolName ) : CNavUIToolPanel( parent, toolName )
+{
+ LoadControlSettings( "Resource/UI/NavTools/AttributeTool.res" );
+}
+
+#endif // SERVER_USES_VGUI
+
+//--------------------------------------------------------------------------------------------------------