Counter Strike : Global Offensive Source Code
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.

22 lines
539 B

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