2024-02-17 16:06:11 -06:00
|
|
|
#![doc(html_logo_url = "https://raw.githubusercontent.com/griffi-gh/hui/master/.assets/hui.svg")]
|
|
|
|
//!
|
|
|
|
//! Simple UI library for games and other interactive applications
|
|
|
|
//!
|
2024-02-19 14:32:13 -06:00
|
|
|
//! # Features
|
|
|
|
#![doc = document_features::document_features!()]
|
|
|
|
|
2024-02-20 13:03:39 -06:00
|
|
|
#![allow(unused_parens)]
|
2024-02-19 14:32:13 -06:00
|
|
|
#![forbid(unsafe_code)]
|
|
|
|
#![forbid(unsafe_op_in_unsafe_fn)]
|
2024-02-17 14:43:46 -06:00
|
|
|
|
2024-02-20 10:49:44 -06:00
|
|
|
mod instance;
|
2024-02-27 13:31:12 -06:00
|
|
|
mod macros;
|
2024-02-20 10:30:26 -06:00
|
|
|
pub mod layout;
|
|
|
|
pub mod rectangle;
|
2024-02-20 13:56:58 -06:00
|
|
|
pub mod background;
|
2024-02-17 14:43:46 -06:00
|
|
|
pub mod element;
|
|
|
|
pub mod event;
|
2024-02-19 12:40:18 -06:00
|
|
|
pub mod input;
|
2024-02-17 14:43:46 -06:00
|
|
|
pub mod draw;
|
|
|
|
pub mod measure;
|
|
|
|
pub mod state;
|
|
|
|
pub mod text;
|
2024-02-26 09:33:55 -06:00
|
|
|
pub mod color;
|
2024-02-17 14:43:46 -06:00
|
|
|
|
2024-02-20 10:49:44 -06:00
|
|
|
pub use instance::UiInstance;
|