add: directx11 hook (menu), imgui/minhook and the settings

This commit is contained in:
2024-04-13 12:37:16 +02:00
parent 9e8909a97f
commit 636f3e0e1e
43 changed files with 53583 additions and 1 deletions

15
user/hooks/hooks.hpp Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#include <Windows.h>
#include <MinHook.h>
#pragma warning(push, 0)
#include "imgui/imgui.h"
#include "imgui/imgui_impl_win32.h"
#include "imgui/imgui_impl_dx11.h"
#pragma warning(pop)
bool HookDX11();
void CreateHooks();
bool InitializeHooks();
void DisableHooks();