pub trait DynamicAssetCollection {
    // Required method
    fn register(&self, dynamic_assets: &mut DynamicAssets);
}
Expand description

This traits describes types that contain asset configurations and can register them in the DynamicAssets resource.

Required Methods§

source

fn register(&self, dynamic_assets: &mut DynamicAssets)

Register all dynamic assets inside the collection in the DynamicAssets resource.

Implementors§