waycrab/src/input.rs
2023-07-27 15:00:46 -05:00

15 lines
250 B
Rust

use crate::state::Waycrab;
use smithay::backend::input::{
*
};
use std::error::Error;
impl InputBackend for Waycrab{
fn dispatch_new_events<F>(
&mut self,
callback: F) -> Result<(),Self::EventError>{
Ok(())
}
}