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.

28 lines
588 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #include "cbase.h"
  8. #include "c_basedoor.h"
  9. // memdbgon must be the last include file in a .cpp file!!!
  10. #include "tier0/memdbgon.h"
  11. #ifdef CBaseDoor
  12. #undef CBaseDoor
  13. #endif
  14. IMPLEMENT_CLIENTCLASS_DT(C_BaseDoor, DT_BaseDoor, CBaseDoor)
  15. RecvPropFloat(RECVINFO(m_flWaveHeight)),
  16. END_RECV_TABLE()
  17. C_BaseDoor::C_BaseDoor( void )
  18. {
  19. m_flWaveHeight = 0.0f;
  20. }
  21. C_BaseDoor::~C_BaseDoor( void )
  22. {
  23. }