diff options
Diffstat (limited to 'game/server/tf2/tf_ai_hint.h')
| -rw-r--r-- | game/server/tf2/tf_ai_hint.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/game/server/tf2/tf_ai_hint.h b/game/server/tf2/tf_ai_hint.h new file mode 100644 index 0000000..8e305fa --- /dev/null +++ b/game/server/tf2/tf_ai_hint.h @@ -0,0 +1,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 |