mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 10:07:27 +08:00
32 lines
1.2 KiB
C#
32 lines
1.2 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System.ComponentModel;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Screens.Select.Options;
|
|
|
|
namespace osu.Game.Tests.Visual.SongSelect
|
|
{
|
|
[Description("bottom beatmap details")]
|
|
public class TestSceneBeatmapOptionsOverlay : OsuTestScene
|
|
{
|
|
public TestSceneBeatmapOptionsOverlay()
|
|
{
|
|
var overlay = new BeatmapOptionsOverlay();
|
|
|
|
var colours = new OsuColour();
|
|
|
|
overlay.AddButton(@"Manage", @"collections", FontAwesome.Solid.Book, colours.Green, null);
|
|
overlay.AddButton(@"Delete", @"all difficulties", FontAwesome.Solid.Trash, colours.Pink, null);
|
|
overlay.AddButton(@"Remove", @"from unplayed", FontAwesome.Regular.TimesCircle, colours.Purple, null);
|
|
overlay.AddButton(@"Clear", @"local scores", FontAwesome.Solid.Eraser, colours.Purple, null);
|
|
overlay.AddButton(@"Edit", @"beatmap", FontAwesome.Solid.PencilAlt, colours.Yellow, null);
|
|
|
|
Add(overlay);
|
|
|
|
AddStep(@"Toggle", overlay.ToggleVisibility);
|
|
}
|
|
}
|
|
}
|