use crate::errors::KeyLayoutError;
pub struct KeyLayout;
impl KeyLayout {
pub fn new_from_window(_window: &winit::window::Window) -> Result<KeyLayout, KeyLayoutError> {
Err(KeyLayoutError::PlatformUnsupportedError)
}
pub fn new() -> Result<KeyLayout, KeyLayoutError> {
Err(KeyLayoutError::PlatformUnsupportedError)
}
pub fn get_key_as_string(&self, scancode: u32) -> String {
panic!("Unimplemented")
}
}