ui/src/guihandler/gui/mod.rs
2023-01-16 10:53:52 +01:00

19 lines
397 B
Rust

//! `gui` module is a collection of low level user interface properties
//! which can be used to create ui components
pub mod clickable;
pub mod colorable;
pub mod displayable;
pub mod executable;
pub mod framable;
pub mod hoverable;
pub mod iconizable;
pub mod selectable;
pub mod textable;
pub mod topgui;
pub mod writeable;
#[cfg(feature = "audio")]
pub mod audible;
pub mod texturedvertex;