2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
2024-10-07 15:44:10 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2024-05-07 00:11:40 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Overlays.Dialog;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Maintenance
|
|
|
|
|
{
|
2023-02-28 04:57:59 +08:00
|
|
|
|
public partial class MassDeleteConfirmationDialog : DangerousActionDialog
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2024-05-07 00:11:40 +08:00
|
|
|
|
public MassDeleteConfirmationDialog(Action deleteAction, LocalisableString deleteContent)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2024-05-07 00:11:40 +08:00
|
|
|
|
BodyText = deleteContent;
|
2024-10-07 15:44:10 +08:00
|
|
|
|
Icon = FontAwesome.Solid.Trash;
|
2023-03-06 03:57:26 +08:00
|
|
|
|
DangerousAction = deleteAction;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|