InitGui.h 720 B

123456789101112131415161718192021222324
  1. #pragma once
  2. #include <Windows.h>
  3. #include "../api/imgui/ImGui/imgui.h"
  4. #include "../api/imgui/ImGui/imgui_impl_dx11.h"
  5. #include "../api/imgui/ImGui/imgui_impl_win32.h"
  6. #include "../api/imgui/ImGuiNotify/fa_solid_900.h"
  7. #include "../api/imgui/ImGuiNotify/font_awesome_5.h"
  8. #include "../api/imgui/ImGuiNotify/tahoma.h"
  9. #include "../themes/fonts/FontsLoader.h"
  10. #include "../themes/ThemeLoader.h"
  11. #include "GuiDefinitions.h"
  12. #include "MainGUI.h"
  13. #include "Sections.h"
  14. #include "../functions/Settings/Settings.h"
  15. void MergeIconsWithLatestFont(float font_size, bool FontDataOwnedByAtlas = false);
  16. namespace gui {
  17. void InitImGui(HWND window, ID3D11Device* pDevice, ID3D11DeviceContext* pContext);
  18. void Render();
  19. }