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.

36 lines
808 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================//
  6. #include "basehlcombatweapon_shared.h"
  7. #ifndef C_BASEHLCOMBATWEAPON_H
  8. #define C_BASEHLCOMBATWEAPON_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. class C_HLMachineGun : public C_BaseHLCombatWeapon
  13. {
  14. public:
  15. DECLARE_CLASS( C_HLMachineGun, C_BaseHLCombatWeapon );
  16. DECLARE_CLIENTCLASS();
  17. };
  18. class C_HLSelectFireMachineGun : public C_HLMachineGun
  19. {
  20. public:
  21. DECLARE_CLASS( C_HLSelectFireMachineGun, C_HLMachineGun );
  22. DECLARE_CLIENTCLASS();
  23. };
  24. class C_BaseHLBludgeonWeapon : public C_BaseHLCombatWeapon
  25. {
  26. public:
  27. DECLARE_CLASS( C_BaseHLBludgeonWeapon, C_BaseHLCombatWeapon );
  28. DECLARE_CLIENTCLASS();
  29. };
  30. #endif // C_BASEHLCOMBATWEAPON_H