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.

31 lines
595 B

  1. //===== Copyright � 1996-2005, Valve Corporation, All rights reserved. ======//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //===========================================================================//
  7. #ifndef IVTEX_H
  8. #define IVTEX_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include "tier1/interface.h"
  13. class IVTex
  14. {
  15. public:
  16. // For use by command-line tools
  17. virtual int VTex( int argc, char **argv ) = 0;
  18. // For use by engine
  19. virtual int VTex( CreateInterfaceFn filesystemFactory, const char *pGameDir, int argc, char **argv ) = 0;
  20. };
  21. #define IVTEX_VERSION_STRING "VTEX_003"
  22. #endif // IVTEX_H