blob: 03baf2e2308eff9b60e7fff1a2e164cdd199c578 (
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
34
35
36
37
38
39
40
41
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef ENGINETOOLS_INT_H
#define ENGINETOOLS_INT_H
#ifdef _WIN32
#pragma once
#endif
//-----------------------------------------------------------------------------
// Forward declarations
//-----------------------------------------------------------------------------
class IEngineTool;
class IEngineVGui;
class IServerTools;
class IClientTools;
class IFileSystem;
class IP4;
class IVDebugOverlay;
class IDmSerializers;
//-----------------------------------------------------------------------------
// Singleton interfaces
//-----------------------------------------------------------------------------
extern IEngineTool *enginetools;
extern IEngineVGui *enginevgui;
extern IServerTools *servertools;
extern IClientTools *clienttools;
extern IFileSystem *g_pFileSystem;
extern IP4 *p4;
extern IVDebugOverlay *debugoverlay;
extern IDmSerializers *dmserializers;
#endif // ENGINETOOLS_INT_H
|