mod account_sync; mod app; mod arm; mod config; mod fifa17_capability; mod game_launch; mod health; mod local_services; mod logs; mod netcheck; mod preflight; mod setup; fn main() -> eframe::Result<()> { let options = eframe::NativeOptions { viewport: egui::ViewportBuilder::default() .with_title("OpenFUT Launcher") .with_inner_size([780.0, 560.0]) .with_min_inner_size([600.0, 400.0]), ..Default::default() }; eframe::run_native( "OpenFUT Launcher", options, Box::new(|cc| Ok(Box::new(app::LauncherApp::new(cc)))), ) }