minifb-ui 0.2.1

Light wrapper around minifb to make creation of windows and UI elements simple
Documentation
/// Provides things you can create drawable texts with using ttf/otf fonts
pub mod text;
/// Provides the Button struct and everything you need for it
pub mod button;
/// Provides the TextInput struct for text entry fields
pub mod textinput;
/// Provides the Slider struct for numeric range selection
pub mod slider;
/// Provides the Switch struct for iOS-style toggle switches
pub mod switch;
/// Provides the Checkbox struct for boolean toggles
pub mod checkbox;
/// Provides the ProgressBar struct for progress indication
pub mod progressbar;
/// Provides the Dropdown struct for selection from a list
pub mod dropdown;
/// Provides the Tooltip struct for hover-triggered info
pub mod tooltip;
/// Provides the ScrollArea struct for scrollable content regions
pub mod scrollarea;
/// Provides the Tabs struct for tabbed navigation
pub mod tabs;
/// Provides the ContextMenu struct for right-click menus
pub mod contextmenu;

pub use text::Text;
pub use button::{Button, ButtonType, Alignment};
pub use slider::Slider;
pub use textinput::TextInput;
pub use switch::Switch;
pub use checkbox::Checkbox;
pub use progressbar::ProgressBar;
pub use dropdown::Dropdown;
pub use tooltip::Tooltip;
pub use scrollarea::ScrollArea;
pub use tabs::Tabs;
pub use contextmenu::ContextMenu;