From b9e0f7494881ad7cdfbcbc16878ecc6ef717753f Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 20 Sep 2019 19:15:31 +0200 Subject: Create `iced_core` and `iced_native` --- native/src/input.rs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 native/src/input.rs (limited to 'native/src/input.rs') 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; -- cgit