diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-09-28 17:39:03 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-09-28 17:39:03 -0500 |
commit | 876c829512301e3f20161f05d7c193540e6d1710 (patch) | |
tree | 17cb3f1956d88ce87e1bcd980ea67f0592b0bed4 /src/imgui_context.cpp | |
parent | dac2e7507d0172e2a87ed5b2df9c320bc9717da6 (diff) |
Working through file picker.
Diffstat (limited to 'src/imgui_context.cpp')
-rw-r--r-- | src/imgui_context.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/imgui_context.cpp b/src/imgui_context.cpp index f45b22b..99ecd3f 100644 --- a/src/imgui_context.cpp +++ b/src/imgui_context.cpp @@ -47,6 +47,11 @@ const ImGuiIO& ImguiContext::getIO() const return ImGui::GetIO(); } +ImGuiIO& ImguiContext::getIO() +{ + return ImGui::GetIO(); +} + bool ImguiContext::processEvent(SDL_Event& event) const { return ImGui_ImplSDL2_ProcessEvent(&event); |