Move Size to iced_core

This commit is contained in:
Héctor Ramón Jiménez 2020-02-14 05:35:42 +01:00
parent ad3a0a184f
commit 945dfabd71
3 changed files with 3 additions and 3 deletions

View file

@ -22,6 +22,7 @@ mod font;
mod length;
mod point;
mod rectangle;
mod size;
mod vector;
pub use align::{Align, HorizontalAlignment, VerticalAlignment};
@ -31,4 +32,5 @@ pub use font::Font;
pub use length::Length;
pub use point::Point;
pub use rectangle::Rectangle;
pub use size::Size;
pub use vector::Vector;