blob: 8aa47e6fed9722110c2639d5186be3e3a0d10a1a (
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
27
28
|
//========= 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
|