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.

47 lines
742 B

  1. //========= Copyright � 1996-2009, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================//
  6. #ifndef WEAPONS_PORTAL_H
  7. #define WEAPONS_PORTAL_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. typedef enum
  12. {
  13. WEAPON_NONE = 0,
  14. //Melee
  15. WEAPON_CROWBAR,
  16. //Special
  17. WEAPON_PORTALGUN,
  18. WEAPON_PHYSCANNON,
  19. //Pistols
  20. WEAPON_PISTOL,
  21. WEAPON_357,
  22. //Machineguns
  23. WEAPON_SMG,
  24. WEAPON_AR2,
  25. //Grenades
  26. WEAPON_FRAG,
  27. WEAPON_BUGBAIT,
  28. //Other
  29. WEAPON_SHOTGUN,
  30. WEAPON_CROSSBOW,
  31. WEAPON_RPG,
  32. //Hat
  33. WEAPON_WEARABLE,
  34. WEAPON_MAX, // number of weapons weapon index
  35. } PortalWeaponID;
  36. #endif // WEAPONS_PORTAL_H