summaryrefslogtreecommitdiffstats
path: root/native/src/input/mouse.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-04-28 03:11:01 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-04-28 03:11:01 +0200
commit56dbd683269b82da16d8eae3f98f352301750bf5 (patch)
tree50d986a0c10f6bdab915b9ae3b53e170dd5497bf /native/src/input/mouse.rs
parent20d79a43cce5a1bf0cb48a7668ac90d0ac82dfdc (diff)
downloadiced-56dbd683269b82da16d8eae3f98f352301750bf5.tar.gz
iced-56dbd683269b82da16d8eae3f98f352301750bf5.tar.bz2
iced-56dbd683269b82da16d8eae3f98f352301750bf5.zip
Move reusable `mouse` types to `iced_core`
Diffstat (limited to 'native/src/input/mouse.rs')
-rw-r--r--native/src/input/mouse.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/native/src/input/mouse.rs b/native/src/input/mouse.rs
index 7198b233..ae3f1596 100644
--- a/native/src/input/mouse.rs
+++ b/native/src/input/mouse.rs
@@ -1,9 +1,6 @@
//! Build mouse events.
-mod button;
-mod event;
pub mod click;
-pub use button::Button;
pub use click::Click;
-pub use event::{Event, ScrollDelta};
+pub use iced_core::mouse::*;