1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-20 20:46:03 +08:00
Files
hl2sdk/game/server/NavUI/MeshTool.cpp
2025-02-19 18:39:00 -05:00

26 lines
808 B
C++

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