diff --git a/osu.Game/Overlays/Mods/ModSelectOverlay.cs b/osu.Game/Overlays/Mods/ModSelectOverlay.cs index ee03ad9f79..10f98275d1 100644 --- a/osu.Game/Overlays/Mods/ModSelectOverlay.cs +++ b/osu.Game/Overlays/Mods/ModSelectOverlay.cs @@ -2,6 +2,7 @@ // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; +using System.Collections.Generic; using System.Linq; using OpenTK; using OpenTK.Graphics; @@ -33,7 +34,7 @@ namespace osu.Game.Overlays.Mods private FillFlowContainer modSectionsContainer; - public readonly Bindable SelectedMods = new Bindable(); + public readonly Bindable> SelectedMods = new Bindable>(); public readonly Bindable PlayMode = new Bindable();