mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Use BindableList<T>
This commit is contained in:
@ -13,7 +13,6 @@ using osu.Game.Graphics.Containers;
|
||||
using osu.Game.Graphics.UserInterface;
|
||||
using osuTK.Graphics;
|
||||
using osu.Game.Rulesets;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace osu.Game.Overlays.BeatmapListing
|
||||
{
|
||||
@ -29,9 +28,9 @@ namespace osu.Game.Overlays.BeatmapListing
|
||||
|
||||
public Bindable<SearchLanguage> Language => languageFilter.Current;
|
||||
|
||||
public Bindable<List<SearchExtra>> Extra => extraFilter.Current;
|
||||
public BindableList<SearchExtra> Extra => extraFilter.Current;
|
||||
|
||||
public Bindable<List<SearchRank>> Ranks => ranksFilter.Current;
|
||||
public BindableList<SearchRank> Ranks => ranksFilter.Current;
|
||||
|
||||
public Bindable<SearchPlayed> Played => playedFilter.Current;
|
||||
|
||||
|
Reference in New Issue
Block a user