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.

23 lines
616 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. #ifndef NEXTBOT_DEBUG_H
  3. #define NEXTBOT_DEBUG_H
  4. //------------------------------------------------------------------------------
  5. // Debug flags for nextbot
  6. enum NextBotDebugType
  7. {
  8. NEXTBOT_DEBUG_NONE = 0,
  9. NEXTBOT_BEHAVIOR = 0x0001,
  10. NEXTBOT_LOOK_AT = 0x0002,
  11. NEXTBOT_PATH = 0x0004,
  12. NEXTBOT_ANIMATION = 0x0008,
  13. NEXTBOT_LOCOMOTION = 0x0010,
  14. NEXTBOT_VISION = 0x0020,
  15. NEXTBOT_HEARING = 0x0040,
  16. NEXTBOT_EVENTS = 0x0080,
  17. NEXTBOT_ERRORS = 0x0100, // when things go wrong, like being stuck
  18. NEXTBOT_DEBUG_ALL = 0xFFFF
  19. };
  20. #endif