mirror of
https://github.com/griffi-gh/hUI.git
synced 2024-11-14 03:28:42 -06:00
30 lines
607 B
Rust
30 lines
607 B
Rust
#![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!()]
|
|
|
|
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
|
|
|
#![deny(unsafe_code)]
|
|
#![forbid(unsafe_op_in_unsafe_fn)]
|
|
#![allow(unused_parens)]
|
|
|
|
mod instance;
|
|
mod macros;
|
|
pub mod layout;
|
|
pub mod rect;
|
|
pub mod element;
|
|
pub mod event;
|
|
pub mod input;
|
|
pub mod draw;
|
|
pub mod measure;
|
|
pub mod state;
|
|
pub mod text;
|
|
pub mod color;
|
|
pub mod signal;
|
|
pub mod frame;
|
|
|
|
pub use instance::UiInstance;
|