use iris::prelude::*; use winit::{dpi::LogicalSize, window::WindowAttributes}; #[path = "lib.rs"] mod app; fn main() { let attributes = WindowAttributes::default().with_inner_size(LogicalSize::new(420.0, 900.0)); DesktopApp::::run_with_attributes(attributes, app::build); }