forked from SwagSoftware/Kisak-Strike
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstdafx.h
59 lines (44 loc) · 1.29 KB
/
stdafx.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#if defined( COMPILER_MSVC )
#pragma once
#endif
#if defined ( DX_TO_GL_ABSTRACTION )
#include "togl/rendermechanism.h"
#endif
#include <stdio.h>
#include <stdlib.h>
#if ( defined( WIN32 ) && !defined( DX_TO_GL_ABSTRACTION ) ) || defined( _X360 )
#include <d3d9.h>
#endif
#include "GFx.h"
// Disable "_force_inline not inlined" warning
#pragma warning(disable : 4714)
#include "Kernel/SF_Types.h"
#include "Kernel/SF_RefCount.h"
#if defined( WIN32 ) && !defined( DX_TO_GL_ABSTRACTION )
#include "GFx_Renderer_D3D9.h"
#else
#include "GFx_Renderer_GL.h"
#endif
#include "tier0/platform.h"
#include "tier0/dbg.h"
#include "vprof.h"
#pragma warning(disable : 4267)
#include "tier1/strtools.h"
#include "tier1/utlvector.h"
#include "tier3/tier3dm.h"
#include "vstdlib/random.h"
#include "interfaces/interfaces.h"
#include "shaderapi/IShaderDevice.h"
#include "inputsystem/ButtonCode.h"
#include "inputsystem/AnalogCode.h"
#include "inputsystem/iinputsystem.h"
#include "filesystem.h"
#include "IGameUIFuncs.h"
namespace SF = Scaleform;
#pragma warning(default : 4267)
#include "scaleformui/scaleformui.h"
#include "scaleformuiimpl/scaleformuiimpl.h"