iced-yoda/native/src/input.rs
2020-03-18 11:26:53 -07:00

8 lines
181 B
Rust

//! Map your system events into input events that the runtime can understand.
pub mod keyboard;
pub mod mouse;
pub mod touch;
mod button_state;
pub use button_state::ButtonState;