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.

25 lines
622 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef IVGUIMATINFO_H
  8. #define IVGUIMATINFO_H
  9. #include "IVguiMatInfoVar.h"
  10. // wrapper for IMaterial
  11. class IVguiMatInfo
  12. {
  13. public:
  14. // make sure to delete the returned object after use!
  15. virtual IVguiMatInfoVar* FindVarFactory ( const char *varName, bool *found ) = 0;
  16. virtual int GetNumAnimationFrames ( ) = 0;
  17. // todo: if you need to add more IMaterial functions add them here
  18. };
  19. #endif //IVGUIMATINFO_H