Make playlist filtering work.

Also standardises searchable terms in beatmap metadata.
This commit is contained in:
Dean Herbert
2017-05-02 10:45:55 +09:00
parent b07af21202
commit 6074cb5979
5 changed files with 60 additions and 16 deletions

View File

@ -22,5 +22,15 @@ namespace osu.Game.Database
public int PreviewTime { get; set; }
public string AudioFile { get; set; }
public string BackgroundFile { get; set; }
public string[] SearchableTerms => new[]
{
Artist,
ArtistUnicode,
Title,
TitleUnicode,
Source,
Tags
};
}
}