pub trait UserInterface<D: Device, A: App> { // Required method fn show_ui(&mut self, imgui: &mut ImGui<D, A>, open: bool) -> bool; }
Trait for hooking into imgui ui calls into other modules