diff options
author | 2020-04-28 03:11:01 +0200 | |
---|---|---|
committer | 2020-04-28 03:11:01 +0200 | |
commit | 56dbd683269b82da16d8eae3f98f352301750bf5 (patch) | |
tree | 50d986a0c10f6bdab915b9ae3b53e170dd5497bf /core/src/lib.rs | |
parent | 20d79a43cce5a1bf0cb48a7668ac90d0ac82dfdc (diff) | |
download | iced-56dbd683269b82da16d8eae3f98f352301750bf5.tar.gz iced-56dbd683269b82da16d8eae3f98f352301750bf5.tar.bz2 iced-56dbd683269b82da16d8eae3f98f352301750bf5.zip |
Move reusable `mouse` types to `iced_core`
Diffstat (limited to 'core/src/lib.rs')
-rw-r--r-- | core/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs index c2887a0b..606c1b8b 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -15,9 +15,11 @@ #![forbid(unsafe_code)] #![forbid(rust_2018_idioms)] pub mod keyboard; +pub mod mouse; mod align; mod background; +mod button_state; mod color; mod font; mod length; @@ -28,6 +30,7 @@ mod vector; pub use align::{Align, HorizontalAlignment, VerticalAlignment}; pub use background::Background; +pub use button_state::ButtonState; pub use color::Color; pub use font::Font; pub use length::Length; |