This commit is contained in:
FluorescentCIAAfricanAmerican
2020-04-22 12:56:21 -04:00
commit 3bf9df6b27
15370 changed files with 5489726 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef SCENEVIEWER_H
#define SCENEVIEWER_H
#ifdef _WIN32
#pragma once
#endif
namespace vgui
{
class ISurface;
class IVGui;
class IPanel;
}
class IMatSystemSurface;
class IStudioRender;
struct MaterialSystem_Config_t;
extern IMatSystemSurface *g_pMatSystemSurface;
extern IStudioRender *g_pStudioRender;
extern const MaterialSystem_Config_t *g_pMaterialSystemConfig;
extern vgui::ISurface *g_pVGuiSurface;
extern vgui::IVGui *g_pVGui;
extern vgui::IPanel *g_pVGuiPanel;
// temporary HACK
class _Window_t;
extern _Window_t *g_pWindow;
#endif // SCENEVIEWER_H