Skip to content
Snippets Groups Projects
Commit 91812605 authored by MrGVSV's avatar MrGVSV
Browse files

Documented top-level modules

parent 753a7118
No related branches found
No related tags found
No related merge requests found
#![feature(doc_auto_cfg)] #![feature(doc_auto_cfg)]
/// The core of Kayak UI, containing all required code
pub mod core { pub mod core {
pub use kayak_core::*; pub use kayak_core::*;
pub use kayak_render_macros::{ pub use kayak_render_macros::{
...@@ -7,14 +8,17 @@ pub mod core { ...@@ -7,14 +8,17 @@ pub mod core {
}; };
} }
/// Contains code related to loading and reading fonts in Kayak UI
#[cfg(feature = "bevy_renderer")] #[cfg(feature = "bevy_renderer")]
pub mod font { pub mod font {
pub use kayak_font::*; pub use kayak_font::*;
} }
/// Bevy-specific code for Bevy integration
#[cfg(feature = "bevy_renderer")] #[cfg(feature = "bevy_renderer")]
pub mod bevy { pub mod bevy {
pub use bevy_kayak_ui::*; pub use bevy_kayak_ui::*;
} }
/// A convenient collection of built-in widgets
pub mod widgets; pub mod widgets;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment