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

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // Defines the entry point for the application.
  6. //
  7. //===========================================================================//
  8. #ifndef RESLISTGENERATOR_H
  9. #define RESLISTGENERATOR_H
  10. #ifdef _WIN32
  11. #pragma once
  12. #endif
  13. class IResListGenerator
  14. {
  15. public:
  16. virtual void Init( char const *pchBaseDir, char const *pchGameDir ) = 0;
  17. virtual void Shutdown() = 0;
  18. virtual bool IsActive() = 0;
  19. virtual void SetupCommandLine() = 0;
  20. virtual bool ShouldContinue() = 0;
  21. };
  22. extern IResListGenerator *reslistgenerator;
  23. #endif // RESLISTGENERATOR_H