iced-yoda/native/src/input.rs

8 lines
166 B
Rust
Raw Normal View History

2019-08-29 03:33:02 +02:00
//! Map your system events into input events that the runtime can understand.
2019-07-20 19:12:31 +02:00
pub mod keyboard;
pub mod mouse;
mod button_state;
pub use button_state::ButtonState;