diff options
Diffstat (limited to 'native/src/input.rs')
-rw-r--r-- | native/src/input.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/native/src/input.rs b/native/src/input.rs new file mode 100644 index 00000000..097fa730 --- /dev/null +++ b/native/src/input.rs @@ -0,0 +1,7 @@ +//! 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; |