mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-30 05:59:20 +00:00
upload "kind" alien swarm
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user