blob: 8e305fa11e20888b88013f6804ead3aed8430ceb (
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
29
30
31
32
33
34
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef TF_AI_HINT_H
#define TF_AI_HINT_H
#ifdef _WIN32
#pragma once
#endif
//=========================================================
// hints - these MUST coincide with the HINTS listed under
// info_node in the FGD file!
//=========================================================
enum TF_Hint_e
{
HINT_RESOURCE_ZONE_AREA = 2000,
// The carrier starts at base_area land spot, goes first to
// the hover spot, then goes to the dropoff hover spot and
// finally to the dropoff landspot
HINT_AIR_CARRIER_DROPOFF_POINT_LANDSPOT,
HINT_AIR_CARRIER_DROPOFF_POINT_HOVERSPOT,
HINT_AIR_CARRIER_BASE_AREA_LANDSPOT,
HINT_AIR_CARRIER_BASE_AREA_HOVERSPOT,
// The ground collector needs hints to drive itself
HINT_GROUNDCOLLECTOR_ZONE_ENTRANCE,
};
#endif // TF_AI_HINT_H
|