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.

27 lines
727 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //===========================================================================//
  6. #include "cbase.h"
  7. #include "modelentities.h"
  8. // memdbgon must be the last include file in a .cpp file!!!
  9. #include "tier0/memdbgon.h"
  10. class CFuncReflectiveGlass : public CFuncBrush
  11. {
  12. DECLARE_DATADESC();
  13. DECLARE_CLASS( CFuncReflectiveGlass, CFuncBrush );
  14. DECLARE_SERVERCLASS();
  15. };
  16. // automatically hooks in the system's callbacks
  17. BEGIN_DATADESC( CFuncReflectiveGlass )
  18. END_DATADESC()
  19. LINK_ENTITY_TO_CLASS( func_reflective_glass, CFuncReflectiveGlass );
  20. IMPLEMENT_SERVERCLASS_ST( CFuncReflectiveGlass, DT_FuncReflectiveGlass )
  21. END_SEND_TABLE()