minifb-ui 0.2.0

Light wrapper around minifb to make creation of windows and UI elements simple
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// 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;

pub use text::Text;
pub use button::{Button, ButtonType, Alignment};
pub use slider::Slider;
pub use textinput::TextInput;
pub use switch::Switch;