1 2 3 4 5 6 7 8 9 10
include!("shared/manual_implement.rs"); fn main() { let options = eframe::NativeOptions::default(); let _ = eframe::run_native( "EGui Field Editor Custom Implementation Example", options, Box::new(|_cc| Ok(Box::new(MyApp::default()))), ); }