pub use devotee_backend::winit::event;
use super::window::Window;
pub mod key_mouse;
pub trait Input<Bck> {
fn next_frame(&mut self);
fn consume_window_event<'a>(
&mut self,
event: event::WindowEvent<'a>,
window: &Window,
backend: &Bck,
) -> Option<event::WindowEvent<'a>>;
}