usecrate::features::egui::internal::EguiManager;/// Lightweight access to just the egui context (used to add UI elements)
pubstructEguiContextResource{pub(super) egui_manager: EguiManager,
}implEguiContextResource{pubfncontext(&self)->egui::CtxRef{self.egui_manager.context()}}