mirror of
https://github.com/bevyengine/bevy
synced 2024-12-20 18:13:10 +00:00
32f7997c56
# Objective Updated the docs for bevy_ui as requested by #3492 ## Solution I have documented the parts I understand. anchors.rs is not in use and should be removed, thus I haven't documented that, and some of the more renderer-heavy code is beyond me and needs input from either cart or someone familiar with bevy rendering Co-authored-by: Troels Jessen <kairyuka@gmail.com>
9 lines
153 B
Rust
9 lines
153 B
Rust
//! This module contains the basic building blocks of Bevy's UI
|
|
|
|
mod button;
|
|
mod image;
|
|
mod text;
|
|
|
|
pub use button::*;
|
|
pub use image::*;
|
|
pub use text::*;
|