Add automated testing of mod preservation/removal

This commit is contained in:
Dean Herbert
2018-08-07 16:45:18 +09:00
parent 7b8bd7f21c
commit 4cb7063801
4 changed files with 52 additions and 37 deletions

View File

@ -99,7 +99,7 @@ namespace osu.Game
private readonly List<OverlayContainer> overlays = new List<OverlayContainer>();
// todo: move this to SongSelect once Screen has the ability to unsuspend.
private readonly Bindable<IEnumerable<Mod>> selectedMods = new Bindable<IEnumerable<Mod>>(new List<Mod>());
private readonly Bindable<IEnumerable<Mod>> selectedMods = new Bindable<IEnumerable<Mod>>(new Mod[] { });
public OsuGame(string[] args = null)
{