diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /game/server/tf2/tf_ai_hint.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
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 |