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

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef IVGUIMATINFOVAR_H
  8. #define IVGUIMATINFOVAR_H
  9. // wrapper for IMaterialVar
  10. class IVguiMatInfoVar
  11. {
  12. public:
  13. // Add a virtual destructor to silence the clang warning.
  14. // This is harmless but not important since the only derived class
  15. // doesn't have a destructor.
  16. virtual ~IVguiMatInfoVar() {}
  17. virtual int GetIntValue ( void ) const = 0;
  18. virtual void SetIntValue ( int val ) = 0;
  19. // todo: if you need to add more IMaterialVar functions add them here
  20. };
  21. #endif //IVGUIMATINFOVAR_H