hUI/hui/src/lib.rs

28 lines
566 B
Rust
Raw Normal View History

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
//!
//! # Features
#![doc = document_features::document_features!()]
2024-02-20 13:03:39 -06:00
#![allow(unused_parens)]
2024-02-29 10:57:06 -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;
2024-03-21 17:22:40 -05:00
pub mod rect;
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-03-11 18:29:26 -05:00
pub mod signal;
2024-03-23 13:53:32 -05:00
pub mod frame;
2024-02-17 14:43:46 -06:00
2024-02-20 10:49:44 -06:00
pub use instance::UiInstance;