blob: 7f34e5ef857b42bd134d9b473379c3b61075ee9e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef ELEMENTVIEWER_H
#define ELEMENTVIEWER_H
#ifdef _WIN32
#pragma once
#endif
namespace vgui
{
class ISurface;
class IVGui;
class IPanel;
}
class IFileSystem;
//class IMaterialSystem;
class IMatSystemSurface;
/*
extern IFileSystem *g_pFileSystem;
extern IMaterialSystem *g_pMaterialSystem;
extern IMatSystemSurface *g_pMatSystemSurface;
extern vgui::ISurface *g_pVGuiSurface;
extern vgui::IVGui *g_pVGui;
extern vgui::IPanel *g_pVGuiPanel;
*/
#endif // ELEMENTVIEWER_H
|