Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
729 B

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef AI_NAVGOALTYPE_H
#define AI_NAVGOALTYPE_H
#if defined( _WIN32 )
#pragma once
#endif
// =======================================
// Movement goals
// Used both to store the current
// movment goal in m_routeGoalType
// and to or/and with route
// =======================================
enum GoalType_t
{
GOALTYPE_NONE,
GOALTYPE_TARGETENT,
GOALTYPE_ENEMY,
GOALTYPE_PATHCORNER,
GOALTYPE_LOCATION,
GOALTYPE_LOCATION_NEAREST_NODE,
GOALTYPE_FLANK,
GOALTYPE_COVER,
GOALTYPE_INVALID
};
#endif // AI_NAVGOALTYPE_H