Merge branch 'osu-direct' of https://github.com/DrabWeb/osu into osu-direct

This commit is contained in:
DrabWeb
2017-05-24 02:40:00 -03:00
55 changed files with 826 additions and 472 deletions

View File

@ -207,22 +207,22 @@ namespace osu.Game.Overlays
filter.Search.HoldFocus = false;
}
public class ResultCounts
{
public readonly int Artists;
public readonly int Songs;
public readonly int Tags;
public ResultCounts(int artists, int songs, int tags)
{
Artists = artists;
Songs = songs;
Tags = tags;
}
}
public enum PanelDisplayStyle
{
public class ResultCounts
{
public readonly int Artists;
public readonly int Songs;
public readonly int Tags;
public ResultCounts(int artists, int songs, int tags)
{
Artists = artists;
Songs = songs;
Tags = tags;
}
}
public enum PanelDisplayStyle
{
Grid,
List,
}