#![allow(unused_variables)] use eframe::egui; pub struct TemplateApp; impl TemplateApp { pub fn generate(cc: &eframe::CreationContext<'_>) -> Box { Box::new(TemplateApp) } } impl eframe::App for TemplateApp { fn update(&mut self, ctx: &egui::Context, frame: &mut eframe::Frame) { // CODEGEN START - PUT CUSTOM CODE ABOVE AND BELOW // CODEGEN END } }