Make providing a custom ResourceStore to LegacyBeatmapSkin optional (for tests only)

This commit is contained in:
Dean Herbert
2022-03-22 19:23:22 +09:00
parent 35d2f973a3
commit a7f63fb034
7 changed files with 9 additions and 8 deletions

View File

@ -206,7 +206,7 @@ namespace osu.Game.Tests.Beatmaps
this.resources = resources;
}
protected internal override ISkin GetSkin() => new LegacyBeatmapSkin(skinBeatmapInfo, resourceStore, resources);
protected internal override ISkin GetSkin() => new LegacyBeatmapSkin(skinBeatmapInfo, resources, resourceStore);
}
}
}