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.
33 lines
657 B
33 lines
657 B
//========= 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
|
|
|