1 2 3 4 5 6 7 8
//! Miscellaneous tools used by the rest of egui. pub(crate) mod cache; mod history; pub mod undoer; pub(crate) use cache::Cache; pub use history::History;