From 6857829dc3171fd68065498b6cd29f0ef02a8d43 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 13 Nov 2019 07:22:21 +0100 Subject: Draft `Font` type and implement `Text::font` --- core/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'core/src/lib.rs') diff --git a/core/src/lib.rs b/core/src/lib.rs index ab43ab94..b61f2eae 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -3,6 +3,7 @@ pub mod widget; mod align; mod background; mod color; +mod font; mod length; mod point; mod rectangle; @@ -11,6 +12,7 @@ mod vector; pub use align::Align; pub use background::Background; pub use color::Color; +pub use font::Font; pub use length::Length; pub use point::Point; pub use rectangle::Rectangle; -- cgit