1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 00:07:25 +08:00
osu-lazer/osu.Game/Screens/Select/BeatmapDeleteDialog.cs

27 lines
812 B
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Game.Beatmaps;
using osu.Game.Overlays.Dialog;
namespace osu.Game.Screens.Select
{
2022-11-24 13:32:20 +08:00
public partial class BeatmapDeleteDialog : DeleteConfirmationDialog
2018-04-13 17:19:50 +08:00
{
private readonly BeatmapSetInfo beatmapSet;
2018-04-13 17:19:50 +08:00
public BeatmapDeleteDialog(BeatmapSetInfo beatmapSet)
2018-04-13 17:19:50 +08:00
{
this.beatmapSet = beatmapSet;
BodyText = $@"{beatmapSet.Metadata.Artist} - {beatmapSet.Metadata.Title}";
2018-04-13 17:19:50 +08:00
}
[BackgroundDependencyLoader]
private void load(BeatmapManager beatmapManager)
2018-04-13 17:19:50 +08:00
{
DeleteAction = () => beatmapManager.Delete(beatmapSet);
2018-04-13 17:19:50 +08:00
}
}
}