osu/osu.Game/Screens/Play/ReplaySettings/CollectionSettings.cs

34 lines
1.0 KiB
C#
Raw Normal View History

2017-05-17 12:39:26 +00:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Overlays.Music;
using System.Collections.Generic;
2017-05-22 06:07:08 +00:00
namespace osu.Game.Screens.Play.ReplaySettings
2017-05-17 12:39:26 +00:00
{
2017-06-05 07:47:42 +00:00
public class CollectionSettings : ReplayGroup
2017-05-17 12:39:26 +00:00
{
2017-05-27 21:56:11 +00:00
protected override string Title => @"collections";
2017-05-17 12:39:26 +00:00
[BackgroundDependencyLoader]
2017-05-17 12:54:12 +00:00
private void load()
2017-05-17 12:39:26 +00:00
{
2017-05-29 16:00:29 +00:00
Children = new Drawable[]
2017-05-17 12:39:26 +00:00
{
2017-05-29 16:00:29 +00:00
new OsuSpriteText
{
Text = @"Add current song to",
},
new CollectionsDropdown<PlaylistCollection>
{
RelativeSizeAxes = Axes.X,
Items = new[] { new KeyValuePair<string, PlaylistCollection>(@"All", PlaylistCollection.All) },
},
};
2017-05-17 12:39:26 +00:00
}
}
}