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
792 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef ENERGYWAVE_H
  8. #define ENERGYWAVE_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include "basecombatweapon.h"
  13. #include "energy_wave.h"
  14. //-----------------------------------------------------------------------------
  15. // Purpose: Shield
  16. //-----------------------------------------------------------------------------
  17. class CEnergyWave : public CBaseEntity
  18. {
  19. DECLARE_DATADESC();
  20. public:
  21. DECLARE_CLASS( CEnergyWave, CBaseEntity );
  22. DECLARE_SERVERCLASS();
  23. public:
  24. void Spawn( void );
  25. void Precache( void );
  26. public:
  27. static CEnergyWave* Create( CBaseEntity *pentOwner );
  28. };
  29. #endif //ENERGYWAVE_H