-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpch.hpp
More file actions
39 lines (35 loc) · 765 Bytes
/
pch.hpp
File metadata and controls
39 lines (35 loc) · 765 Bytes
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
#pragma once
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
#include <unordered_map>
#include <map>
#include <iostream>
#include <iomanip>
#include <functional>
#include <iostream>
#include <sstream>
#include <fstream>
#include <stdlib.h>
#include <stdio.h>
#include <chrono>
#include <mutex>
#include <thread>
#include <string>
#include <numeric>
#include <string_view>
#include <cmath>
#include <random>
#include <inttypes.h>
#include <filesystem>
// CodeRed Macros
#define WALKTHROUGH
#include "Types.hpp"
#include "PlaceHolderSDK/SdkHeaders.hpp"
#include "Framework/FunctionHook/FunctionHook.hpp"
#include "Framework/EventGuard/EventGuard.hpp"
#ifdef CR_DETOURS
#include <detours.h>
#endif
#ifdef CR_MINHOOK
#include "Framework/MinHook/MinHook.hpp"
#endif