Add check for background resolution and filesize

This commit is contained in:
Naxess
2021-04-17 18:01:04 +02:00
parent b36da2664c
commit 62c54e00cb
2 changed files with 99 additions and 0 deletions

View File

@ -17,6 +17,7 @@ namespace osu.Game.Rulesets.Edit
private readonly List<ICheck> checks = new List<ICheck>
{
new CheckBackground(),
new CheckBackgroundQuality()
};
public IEnumerable<Issue> Run(WorkingBeatmap workingBeatmap) => checks.SelectMany(check => check.Run(workingBeatmap));