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.
 
 
 
 
 
 

28 lines
576 B

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef AI_NAVTYPE_H
#define AI_NAVTYPE_H
#if defined( _WIN32 )
#pragma once
#endif
// ---------------------------
// Navigation Type Bits
// ---------------------------
enum Navigation_t
{
NAV_NONE = -1, // error condition
NAV_GROUND = 0, // walk/run
NAV_JUMP, // jump/leap
NAV_FLY, // can fly, move all around
NAV_CLIMB, // climb ladders
};
#endif // AI_NAVTYPE_H