Trait amethyst_assets::Progress[][src]

pub trait Progress {
    type Tracker: Tracker;
    fn add_assets(&mut self, num: usize);
fn create_tracker(self) -> Self::Tracker; }

The Progress trait, allowing to track which assets are imported already.

Associated Types

The tracker this progress can create.

Required Methods

Add num assets to the progress. This should be done whenever a new asset is put in the queue.

Creates a Tracker.

Implementations on Foreign Types

impl Progress for ()
[src]

Implementors