2022-09-02 08:07:09 +00:00
|
|
|
// 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;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Overlays.Dialog;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit
|
|
|
|
{
|
2023-02-27 20:57:59 +00:00
|
|
|
public partial class DeleteDifficultyConfirmationDialog : DangerousActionDialog
|
2022-09-02 08:07:09 +00:00
|
|
|
{
|
|
|
|
public DeleteDifficultyConfirmationDialog(BeatmapInfo beatmapInfo, Action deleteAction)
|
|
|
|
{
|
|
|
|
BodyText = $"\"{beatmapInfo.DifficultyName}\" difficulty";
|
2023-03-05 19:57:26 +00:00
|
|
|
DangerousAction = deleteAction;
|
2022-09-02 08:07:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|