mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-04 00:23:25 +08:00
29 lines
617 B
C
29 lines
617 B
C
|
//========= Copyright <20> 1996-2005, 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
|