summaryrefslogtreecommitdiffstats
path: root/native/src/input.rs
blob: c08beaf9740ad5d32a5f742afc9e45e633cc59b4 (plain) (blame)
1
2
3
4
5
6
7
8
//! 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;