blob: 4e2dc69453cb597d50a4b9ca914605fc9034ae57 (
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
26
|
//========= 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);
|