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.

50 lines
1.3 KiB

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose: The default shared conditions
  4. //
  5. // $Workfile: $
  6. // $Date: $
  7. //
  8. //-----------------------------------------------------------------------------
  9. // $Log: $
  10. //
  11. // $NoKeywords: $
  12. //=============================================================================//
  13. #ifndef SQUADSLOT_H
  14. #define SQUADSLOT_H
  15. #define MAX_SQUADSLOTS 32
  16. //=========================================================
  17. // These are the default shared squad slots
  18. //
  19. // NOTE: If you add a new squad slot here, make sure you
  20. // update GetSquadSlotDebugName()
  21. //=========================================================
  22. enum SQUAD_SLOT_t {
  23. // Currently there are no shared squad slots
  24. SQUAD_SLOT_NONE = -1,
  25. SQUAD_SLOT_ATTACK1 = 0, // reserve 2 attack slots for most squads
  26. SQUAD_SLOT_ATTACK2,
  27. SQUAD_SLOT_INVESTIGATE_SOUND,
  28. SQUAD_SLOT_EXCLUSIVE_HANDSIGN, // only one person in a squad should do this!
  29. SQUAD_SLOT_EXCLUSIVE_RELOAD,
  30. SQUAD_SLOT_PICKUP_WEAPON1,
  31. SQUAD_SLOT_PICKUP_WEAPON2,
  32. SQUAD_SLOT_SPECIAL_ATTACK, // Combine Elite using the combine ball attack, for instance.
  33. // ======================================
  34. // IMPORTANT: This must be the last enum
  35. // ======================================
  36. LAST_SHARED_SQUADSLOT,
  37. };
  38. #endif //SQUADSLOT_H