//! Library for UI development
//!
//! This library features a `UIScreen<T>` where T is your data that you want to
//! store in the UI. You can for example, have a function callback in the UI.
//!
//! This library doesn't do any drawing, only layout.
pub extern crate simd;
// Forked from https://github.com/SimonSapin/rust-forest/blob/master/rctree/lib.rs
// because the crate is not available anymore on crates.io. MIT License Simon Sapin
pub use NodeRef as NodeRef;
pub use Rect;
pub use UiScreen;
pub use ;