mirror of
https://github.com/360NENZ/Taiga74164-Akebi-GC.git
synced 2025-09-19 04:06:12 +08:00
We rise from the ashes
This commit is contained in:
3
cheat-base/framework/framework.h
Normal file
3
cheat-base/framework/framework.h
Normal file
@ -0,0 +1,3 @@
|
||||
#pragma once
|
||||
|
||||
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
5
cheat-base/framework/pch.cpp
Normal file
5
cheat-base/framework/pch.cpp
Normal file
@ -0,0 +1,5 @@
|
||||
// pch.cpp: source file corresponding to the pre-compiled header
|
||||
|
||||
#include "pch.h"
|
||||
|
||||
// When you are using pre-compiled headers, this source file is necessary for compilation to succeed.
|
47
cheat-base/framework/pch.h
Normal file
47
cheat-base/framework/pch.h
Normal file
@ -0,0 +1,47 @@
|
||||
// pch.h: This is a precompiled header file.
|
||||
// Files listed below are compiled only once, improving build performance for future builds.
|
||||
// This also affects IntelliSense performance, including code completion and many code browsing features.
|
||||
// However, files listed here are ALL re-compiled if any one of them is updated between builds.
|
||||
// Do not add files here that you will be updating frequently as this negates the performance advantage.
|
||||
|
||||
#ifndef PCH_H
|
||||
#define PCH_H
|
||||
|
||||
// add headers that you want to pre-compile here
|
||||
#include "framework.h"
|
||||
|
||||
#include <magic_enum.hpp>
|
||||
#include <nlohmann/json.hpp>
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <algorithm>
|
||||
#include <map>
|
||||
#include <unordered_set>
|
||||
#include <queue>
|
||||
#include <sstream>
|
||||
#include <mutex>
|
||||
#include <optional>
|
||||
|
||||
#include <Windows.h>
|
||||
|
||||
#include <imgui.h>
|
||||
#include <imconfig.h>
|
||||
#include <backends/imgui_impl_dx11.h>
|
||||
#include <imgui_notify.h>
|
||||
|
||||
#include <SimpleIni.h>
|
||||
#include <fmt/format.h>
|
||||
#include <detours.h>
|
||||
|
||||
#include <cheat-base/Logger.h>
|
||||
|
||||
#include <cheat-base/events/event.hpp>
|
||||
#include <cheat-base/events/handlers/methodeventhandler.hpp>
|
||||
#include <cheat-base/events/handlers/functoreventhandler.hpp>
|
||||
#include <cheat-base/events/joins/handlereventjoin.hpp>
|
||||
#include <cheat-base/events/joins/eventjoinwrapper.hpp>
|
||||
|
||||
#include <cheat-base/globals.h>
|
||||
#endif //PCH_H
|
Reference in New Issue
Block a user