1 2 3 4 5 6 7 8 9 10
//! Module with assets. pub mod bundle; pub(crate) mod text; #[cfg(feature = "atlas_layout")] pub(crate) mod atlas_layout; pub use bundle::AssetsBundle; pub use text::Text;