1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 10:47:24 +08:00
osu-lazer/osu.Game/Screens/Play/PlayerSettings/CollectionSettings.cs

34 lines
1.0 KiB
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-05-17 20:39:26 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
2017-05-17 20:39:26 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Overlays.Music;
namespace osu.Game.Screens.Play.PlayerSettings
2017-05-17 20:39:26 +08:00
{
2018-01-16 01:52:52 +08:00
public class CollectionSettings : PlayerSettingsGroup
2017-05-17 20:39:26 +08:00
{
2017-05-28 05:56:11 +08:00
protected override string Title => @"collections";
2017-05-17 20:39:26 +08:00
[BackgroundDependencyLoader]
2017-05-17 20:54:12 +08:00
private void load()
2017-05-17 20:39:26 +08:00
{
2017-05-30 00:00:29 +08:00
Children = new Drawable[]
2017-05-17 20:39:26 +08:00
{
2017-05-30 00:00:29 +08: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 20:39:26 +08:00
}
}
}