//! Asset-loading infrastructure for runtime SVG rasterisation and the //! per-platform user-themes directory. //! //! Provides the SVG → `Image` loader and the `embedded://` / `themes://` //! custom `AssetSource` implementations used by the theme system. pub mod card_face_svg; pub mod icon_svg; pub mod sources; pub mod svg_loader; pub mod user_dir; pub use sources::{ AssetSourcesPlugin, CLASSIC_THEME_MANIFEST_URL, DARK_THEME_MANIFEST_URL, USER_THEMES, bundled_theme_url, classic_theme_svg_bytes, dark_theme_svg_bytes, populate_embedded_classic_theme, populate_embedded_dark_theme, register_theme_asset_sources, }; pub use svg_loader::{SvgLoader, SvgLoaderError, SvgLoaderSettings, rasterize_svg}; pub use user_dir::{set_user_theme_dir, user_theme_dir};