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

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //===========================================================================//
  7. #ifndef C_FUNC_REFLECTIVE_GLASS
  8. #define C_FUNC_REFLECTIVE_GLASS
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. struct cplane_t;
  13. class CViewSetup;
  14. //-----------------------------------------------------------------------------
  15. // Do we have reflective glass in view? If so, what's the reflection plane?
  16. //-----------------------------------------------------------------------------
  17. bool IsReflectiveGlassInView( const CViewSetup& view, cplane_t &plane );
  18. #endif // C_FUNC_REFLECTIVE_GLASS