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.

32 lines
761 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef C_ENV_FOG_CONTROLLER_H
  8. #define C_ENV_FOG_CONTROLLER_H
  9. #define CFogController C_FogController
  10. //=============================================================================
  11. //
  12. // Class Fog Controller:
  13. // Compares a set of integer inputs to the one main input
  14. // Outputs true if they are all equivalant, false otherwise
  15. //
  16. class C_FogController : public C_BaseEntity
  17. {
  18. public:
  19. DECLARE_NETWORKCLASS();
  20. DECLARE_CLASS( C_FogController, C_BaseEntity );
  21. C_FogController();
  22. public:
  23. fogparams_t m_fog;
  24. };
  25. #endif // C_ENV_FOG_CONTROLLER_H