Oh dear, imgui!

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-12-03 02:31:38 +02:00
parent 6f97f54301
commit 755936eee8
9 changed files with 305 additions and 23 deletions

View File

@@ -6,6 +6,8 @@
#include "Logger.h"
#include <imgui.h>
namespace Lunar {
class VulkanRenderer;
@@ -20,6 +22,8 @@ private:
Logger m_logger { "Lunar" };
std::unique_ptr<VulkanRenderer> m_renderer;
ImGuiContext *m_imgui_context;
bool m_running { true };
};