From 88864f8e3a4d87566d157ac176da3cb56257ca6d Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Tue, 24 Sep 2024 16:03:47 -0500 Subject: More work on standup. --- src/imgui_context.hpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/imgui_context.hpp') diff --git a/src/imgui_context.hpp b/src/imgui_context.hpp index a625865..520a711 100644 --- a/src/imgui_context.hpp +++ b/src/imgui_context.hpp @@ -1,13 +1,22 @@ #ifndef IMGUI_CONTEXT_HPP #define IMGUI_CONTEXT_HPP +#include "sdl_context.hpp" +#include "sdl_main_window.hpp" +#include "gl_context.hpp" +#include + namespace bookmouse { class ImguiContext { public: - ImguiContext(); + ImguiContext(GlContext& glContext, SdlContext& sdlContext, SdlMainWindow& mainWindow); ~ImguiContext(); + const ImGuiIO& getIO(); + + void setIOFlag(ImGuiConfigFlags_ flag); + private: }; -- cgit v1.2.3