diff options
Diffstat (limited to 'game/shared/cstrike/bot/bot_constants.h')
| -rw-r--r-- | game/shared/cstrike/bot/bot_constants.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/game/shared/cstrike/bot/bot_constants.h b/game/shared/cstrike/bot/bot_constants.h new file mode 100644 index 0000000..94f5090 --- /dev/null +++ b/game/shared/cstrike/bot/bot_constants.h @@ -0,0 +1,40 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +// Author: Matthew D. Campbell ([email protected]), 2003 + +#ifndef BOT_CONSTANTS_H +#define BOT_CONSTANTS_H + +/// version number is MAJOR.MINOR +#define BOT_VERSION_MAJOR 1 +#define BOT_VERSION_MINOR 50 + +//-------------------------------------------------------------------------------------------------------- +/** + * Difficulty levels + */ +enum BotDifficultyType +{ + BOT_EASY = 0, + BOT_NORMAL = 1, + BOT_HARD = 2, + BOT_EXPERT = 3, + + NUM_DIFFICULTY_LEVELS +}; + +#ifdef DEFINE_DIFFICULTY_NAMES + const char *BotDifficultyName[] = + { + "EASY", "NORMAL", "HARD", "EXPERT", NULL + }; +#else + extern const char *BotDifficultyName[]; +#endif + +#endif // BOT_CONSTANTS_H |