Trait Demo
egui::demos
pub trait Demo { fn name(&self) -> &str; fn show(&mut self, ctx: &Arc<Context>, open: &mut bool); }
Something to view
fn name(&self) -> &str
fn show(&mut self, ctx: &Arc<Context>, open: &mut bool)
Show windows, etc
impl Demo for DancingStrings
impl Demo for DragAndDropDemo
impl Demo for Tests