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.

33 lines
631 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #if !defined( C_BASEDOOR_H )
  8. #define C_BASEDOOR_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include "c_baseentity.h"
  13. #include "c_basetoggle.h"
  14. #if defined( CLIENT_DLL )
  15. #define CBaseDoor C_BaseDoor
  16. #endif
  17. class C_BaseDoor : public C_BaseToggle
  18. {
  19. public:
  20. DECLARE_CLASS( C_BaseDoor, C_BaseToggle );
  21. DECLARE_CLIENTCLASS();
  22. C_BaseDoor( void );
  23. ~C_BaseDoor( void );
  24. public:
  25. float m_flWaveHeight;
  26. };
  27. #endif // C_BASEDOOR_H