pub trait WindowInput<C, R> {
    fn input<'a>(&mut self, event: &WindowEvent<'a>, context: &mut C) -> bool;
    fn resize(&self, renderer: &mut R, w: u32, h: u32);
}

Required methods

Implementors