Introduce Layer trait

This commit is contained in:
Héctor Ramón Jiménez 2020-04-16 13:22:00 +02:00
parent c901f40fd6
commit f064f0482b
12 changed files with 252 additions and 54 deletions

View file

@ -48,6 +48,7 @@ mod clipboard;
mod element;
mod event;
mod hasher;
mod layer;
mod overlay;
mod runtime;
mod user_interface;
@ -75,6 +76,7 @@ pub use debug::Debug;
pub use element::Element;
pub use event::Event;
pub use hasher::Hasher;
pub use layer::Layer;
pub use layout::Layout;
pub use overlay::Overlay;
pub use program::Program;