Skip to main content

enigma_3d/
ui.rs

1use std::sync::Arc;
2use crate::AppState;
3pub type GUIDrawFunction = Arc<dyn Fn(&egui::Context, &mut AppState)>;
4
5// full egui version re-export
6pub use egui::*;