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.

32 lines
649 B

  1. //========= Copyright 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. #include "appframework/IAppSystem.h"
  14. class IVTex : public IAppSystem
  15. {
  16. public:
  17. // For use by command-line tools
  18. virtual int VTex( int argc, char **argv ) = 0;
  19. // For use by engine
  20. virtual int VTex( CreateInterfaceFn filesystemFactory, const char *pGameDir, int argc, char **argv ) = 0;
  21. };
  22. #define IVTEX_VERSION_STRING "VTEX_003"
  23. #endif // IVTEX_H