-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIncludes.h
57 lines (47 loc) · 913 Bytes
/
Includes.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
#pragma once
#undef UNICODE
//windows version
#define _WIN32_WINNIT = 0x0601
#include <sdkddkver.h>
#define NOGDICAPMASKS
#define NOMENUS
#define NOICONS
#define NOSYSCOMMANDS
#define NORASTEROPS
#define OEMRESOURCE
#define NOATOM
#define NOCOLOR
#define NODRAWTEXT
#define NOKERNEL
#define NOMEMMGR
#define NOMETAFILE
#define NOSCROLL
#define NOSERVICE
#define NOSOUND
#define NOTEXTMETRIC
#define NOWH
#define NOCOMM
#define NOKANJI
#define NOHELP
#define NOPROFILER
#define NODEFERWINDOWPOS
#define NOMCX
#define NORPC
#define NOPROXYSTUB
#define NOIMAGE
#define NOTAPE
#include <windows.h>
#include <d3d11.h>
#include <DirectXMath.h>
#include <string>
#include <vector>
#include <memory>
#include <random>
constexpr float _Pi = 3.14159265358979f;
#ifdef _DEBUG
#include <iostream>
#define IS_DEBUG TRUE
#else
#define IS_DEBUG FALSE
#endif
#pragma warning(disable:4100)