pub trait RomSet {
type Asset: LoadableAsset;
// Required methods
fn format(&self) -> RomFormat;
fn next_asset(&mut self) -> Option<Self::Asset>;
}
pub trait RomSet {
type Asset: LoadableAsset;
// Required methods
fn format(&self) -> RomFormat;
fn next_asset(&mut self) -> Option<Self::Asset>;
}