1 2 3 4 5 6 7
use crate::Size; pub trait Compositor { fn window(&self) -> &winit::window::Window; fn resize(&self, new_size: Size<u32>); }