HUD Drawing

- Initialize GObjects with Config initialization
- GetDistanceToActor implementation
- pointers to both imgui context & imgui viewport
- watermark

~squish-
- watermark
- update toolset to v143
This commit is contained in:
NightFyre
2024-01-28 14:18:30 -05:00
parent 9dc8140e59
commit 77a18c7264
11 changed files with 119 additions and 43 deletions

View File

@ -26,6 +26,8 @@ namespace DX11_Base {
bool m_Init{};
bool b_ImGui_Initialized{};
WNDPROC m_OldWndProc{};
ImGuiContext* pImGui;
ImGuiViewport* pViewport;
// Forward Dx11 Hook Declarations
bool Init(IDXGISwapChain* swapChain);

View File

@ -1,5 +1,5 @@
#pragma once
#define DEBUG 0
#define DEBUG 1
// External Libraries
#include "../libs/ImGui/imgui.h"