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
38 lines
746 B
//========= 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
|