primitives/prelude/traits/asset_manager_process.rs
1use super::{AssetManager, Process};
2
3/// The AssetManagerProcess should be implemented by objects representing an operating [AssetManager].
4///
5/// These extra interface requirements are required for internal workings, but are not exposed via the minimal [AssetManager] interface.
6///
7pub trait AssetManagerProcess: AssetManager + Process {}