mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-29 17:43:01 +00:00
27 lines
672 B
C++
27 lines
672 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================//
|
|
|
|
|
|
#include "cbase.h"
|
|
|
|
#include "ai_networkmanager.h"
|
|
#include "npc_strider.h"
|
|
|
|
// memdbgon must be the last include file in a .cpp file!!!
|
|
#include "tier0/memdbgon.h"
|
|
|
|
class CHL2NetworkBuildHelper : public CAI_NetworkBuildHelper
|
|
{
|
|
DECLARE_CLASS( CHL2NetworkBuildHelper, CAI_NetworkBuildHelper );
|
|
|
|
void PostInitNodePosition( CAI_Network *pNetwork, CAI_Node *pNode )
|
|
{
|
|
AdjustStriderNodePosition( pNetwork, pNode );
|
|
}
|
|
};
|
|
|
|
LINK_ENTITY_TO_CLASS(ai_network_build_helper,CHL2NetworkBuildHelper);
|