upload "kind" alien swarm

This commit is contained in:
nillerusr
2023-10-03 17:23:56 +03:00
parent b7bd94c52e
commit 7d3c0d8b5a
4229 changed files with 462900 additions and 495155 deletions
+1 -21
View File
@@ -1,4 +1,4 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
@@ -12,34 +12,14 @@
#include "cbase.h"
#include "nav_mesh.h"
#ifdef TERROR
#include "terror/TerrorNav.h"
#endif
#ifdef TF_DLL
#include "tf/nav_mesh/tf_nav_mesh.h"
#endif
#ifdef CSTRIKE_DLL
#include "cstrike/cs_nav_mesh.h"
#endif
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
CNavMesh *NavMeshFactory( void )
{
#ifdef TERROR
return new TerrorNavMesh;
#endif
#ifdef TF_DLL
return new CTFNavMesh;
#endif
#ifdef CSTRIKE_DLL
return new CSNavMesh;
#endif
return new CNavMesh;
}