Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
860 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. // Author: Matthew D. Campbell ([email protected]), 2003
  8. #ifndef BOT_CONSTANTS_H
  9. #define BOT_CONSTANTS_H
  10. /// version number is MAJOR.MINOR
  11. #define BOT_VERSION_MAJOR 1
  12. #define BOT_VERSION_MINOR 50
  13. //--------------------------------------------------------------------------------------------------------
  14. /**
  15. * Difficulty levels
  16. */
  17. enum BotDifficultyType
  18. {
  19. BOT_EASY = 0,
  20. BOT_NORMAL = 1,
  21. BOT_HARD = 2,
  22. BOT_EXPERT = 3,
  23. NUM_DIFFICULTY_LEVELS
  24. };
  25. #ifdef DEFINE_DIFFICULTY_NAMES
  26. const char *BotDifficultyName[] =
  27. {
  28. "EASY", "NORMAL", "HARD", "EXPERT", NULL
  29. };
  30. #else
  31. extern const char *BotDifficultyName[];
  32. #endif
  33. #endif // BOT_CONSTANTS_H