Move reusable mouse types to iced_core

This commit is contained in:
Héctor Ramón Jiménez 2020-04-28 03:11:01 +02:00
parent 20d79a43cc
commit 56dbd68326
10 changed files with 23 additions and 12 deletions

View file

@ -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;