forked from alimb2/Ayyware-Full-Fixed-Updated-2019
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Interfaces.h
36 lines (31 loc) · 826 Bytes
/
Interfaces.h
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
/*
Syn's AyyWare Framework
*/
#pragma once
// Includes
#include "CommonIncludes.h"
#include "SDK.h"
// Namespace to contain all the valve interfaces
namespace Interfaces
{
// Gets handles to all the interfaces needed
void Initialise();
extern IBaseClientDLL* Client;
extern IVEngineClient* Engine;
extern IPanel* Panels;
extern IClientEntityList* EntList;
extern ISurface* Surface;
extern IVDebugOverlay* DebugOverlay;
extern IClientModeShared* ClientMode;
extern CGlobalVarsBase *Globals;
extern DWORD *Prediction;
extern CMaterialSystem* MaterialSystem;
extern CVRenderView* RenderView;
extern IVModelRender* ModelRender;
extern CModelInfo* ModelInfo;
extern IEngineTrace* Trace;
extern IPhysicsSurfaceProps* PhysProps;
extern ICVar *CVar;
extern CInput* pInput;
extern IInputSystem* InputSystem;
};