source2006/dlls/ai_navtype.h
2020-02-25 05:28:57 +02:00

28 lines
589 B
C

//========= Copyright © 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