iced/src/input.rs
2019-08-29 03:33:02 +02:00

7 lines
166 B
Rust

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