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

18
user/features/menu.hpp Normal file
View File

@@ -0,0 +1,18 @@
#pragma once
#include <Windows.h>
#pragma warning(push, 0)
#include "imgui/imgui.h"
#include "imgui/imgui_impl_win32.h"
#include "imgui/imgui_impl_dx11.h"
#include "imgui/imgui_stdlib.h"
#pragma warning(pop)
enum class tabs {
VISUALS,
ENTITIES,
MAP_SPECIFIC,
MISC
};
void InitStyle();
void DrawMenu(bool open_menu);