Remove generics from IApplicableToBeatmap

This commit is contained in:
smoogipoo
2019-08-01 12:35:17 +09:00
parent 3a2e0fbba5
commit 8a64ab0384
11 changed files with 28 additions and 45 deletions

View File

@ -278,7 +278,7 @@ namespace osu.Game.Rulesets.UI
if (mods == null)
return;
foreach (var mod in mods.OfType<IApplicableToBeatmap<TObject>>())
foreach (var mod in mods.OfType<IApplicableToBeatmap>())
mod.ApplyToBeatmap(Beatmap);
}