#![allow(dead_code)]
pub mod keyboard;
use self::keyboard::Keyboard;
#[derive(Debug, Clone, Default)]
pub struct Input {
pub kbd: Keyboard,
}
impl Input {
pub fn new() -> Self {
Self {
kbd: Keyboard::default(),
}
}
pub fn clear(&mut self) {
self.kbd.clear();
}
}