Move Debugger and Windowed to a better location

We move `renderer::Debugger` to `layout::Debugger` and
`renderer::Windowed` to `window::Renderer`.
This commit is contained in:
Héctor Ramón Jiménez 2020-01-10 01:58:55 +01:00
parent d15d1156bd
commit e45497dfd6
10 changed files with 27 additions and 29 deletions

View file

@ -1,9 +1,11 @@
//! Position your widgets properly.
mod debugger;
mod limits;
mod node;
pub mod flex;
pub use debugger::Debugger;
pub use limits::Limits;
pub use node::Node;