blob: 0deea08b9e73a05d4e0f5ddf671ead8f15fe028a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//--------------------------------------------------------------------------------------------------------
//========= Copyright Valve Corporation, All rights reserved. ============//
#include "cbase.h"
#include "MeshTool.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;
//--------------------------------------------------------------------------------------------------------
MeshToolPanel::MeshToolPanel( vgui::Panel *parent, const char *toolName ) : CNavUIToolPanel( parent, toolName )
{
LoadControlSettings( "Resource/UI/NavTools/MeshTool.res" );
}
#endif // SERVER_USES_VGUI
//--------------------------------------------------------------------------------------------------------
|