mooeye 0.4.1

A small UI library designed on top of the ggez game library. WORK IN PROGRESS
Documentation
/// Contains the [DurationBox] struct.
mod duration_box;
/// Contains the [GridBox] struct.
mod grid_box;
/// Contains the [HorizontalBox] struct.
mod horizontal_box;
/// Contains the [StackBox] struct.
mod stack_box;
/// Contains the [VerticalBox] struct.
mod vertical_box;

/// Basic container element.
pub use duration_box::DurationBox;
/// Basic container element.
pub use grid_box::GridBox;
/// Basic container element.
pub use horizontal_box::HorizontalBox;
/// Basic container element.
pub use stack_box::StackBox;
/// Basic container element.
pub use vertical_box::VerticalBox;