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.

41 lines
1.1 KiB

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================
  6. #ifndef ENGINETOOLS_INT_H
  7. #define ENGINETOOLS_INT_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. //-----------------------------------------------------------------------------
  12. // Forward declarations
  13. //-----------------------------------------------------------------------------
  14. class IEngineTool;
  15. class IEngineVGui;
  16. class IServerTools;
  17. class IClientTools;
  18. class IFileSystem;
  19. class IP4;
  20. class IVDebugOverlay;
  21. class IDmSerializers;
  22. //-----------------------------------------------------------------------------
  23. // Singleton interfaces
  24. //-----------------------------------------------------------------------------
  25. extern IEngineTool *enginetools;
  26. extern IEngineVGui *enginevgui;
  27. extern IServerTools *servertools;
  28. extern IClientTools *clienttools;
  29. extern IFileSystem *g_pFileSystem;
  30. extern IP4 *p4;
  31. extern IVDebugOverlay *debugoverlay;
  32. extern IDmSerializers *dmserializers;
  33. #endif // ENGINETOOLS_INT_H