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.

38 lines
746 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================
  6. #ifndef SCENEVIEWER_H
  7. #define SCENEVIEWER_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. namespace vgui
  12. {
  13. class ISurface;
  14. class IVGui;
  15. class IPanel;
  16. }
  17. class IMatSystemSurface;
  18. class IStudioRender;
  19. struct MaterialSystem_Config_t;
  20. extern IMatSystemSurface *g_pMatSystemSurface;
  21. extern IStudioRender *g_pStudioRender;
  22. extern const MaterialSystem_Config_t *g_pMaterialSystemConfig;
  23. extern vgui::ISurface *g_pVGuiSurface;
  24. extern vgui::IVGui *g_pVGui;
  25. extern vgui::IPanel *g_pVGuiPanel;
  26. // temporary HACK
  27. class _Window_t;
  28. extern _Window_t *g_pWindow;
  29. #endif // SCENEVIEWER_H