Add Runtime concept to abstract caching

This commit is contained in:
Héctor Ramón Jiménez 2019-07-23 10:49:24 +02:00
parent eb45c51a7b
commit e55ac637a9
5 changed files with 123 additions and 89 deletions

View file

@ -9,13 +9,13 @@ pub mod widget;
mod element;
mod event;
mod hasher;
mod interface;
mod layout;
mod mouse_cursor;
mod node;
mod point;
mod rectangle;
mod renderer;
mod runtime;
mod style;
mod vector;
@ -25,13 +25,13 @@ pub use stretch::{geometry::Size, number::Number};
pub use element::Element;
pub use event::Event;
pub use hasher::Hasher;
pub use interface::Interface;
pub use layout::Layout;
pub use mouse_cursor::MouseCursor;
pub use node::Node;
pub use point::Point;
pub use rectangle::Rectangle;
pub use renderer::Renderer;
pub use runtime::{Interface, Runtime};
pub use style::{Align, Justify, Style};
pub use vector::Vector;
pub use widget::*;