2022-09-02 16:07:09 +08: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-28 04:57:59 +08:00
|
|
|
public partial class DeleteDifficultyConfirmationDialog : DangerousActionDialog
|
2022-09-02 16:07:09 +08:00
|
|
|
{
|
|
|
|
public DeleteDifficultyConfirmationDialog(BeatmapInfo beatmapInfo, Action deleteAction)
|
|
|
|
{
|
|
|
|
BodyText = $"\"{beatmapInfo.DifficultyName}\" difficulty";
|
2023-03-06 03:57:26 +08:00
|
|
|
DangerousAction = deleteAction;
|
2022-09-02 16:07:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|