1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-09 12:17:24 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Maintenance/MassDeleteConfirmationDialog.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
992 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 18:19:50 +09:00
2022-06-17 16:37:17 +09:00
#nullable disable
using System;
using osu.Framework.Graphics.Sprites;
using osu.Game.Overlays.Dialog;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Overlays.Settings.Sections.Maintenance
{
public class MassDeleteConfirmationDialog : PopupDialog
{
public MassDeleteConfirmationDialog(Action deleteAction)
{
BodyText = "Everything?";
2018-04-13 18:19:50 +09:00
2019-04-02 19:55:24 +09:00
Icon = FontAwesome.Regular.TrashAlt;
HeaderText = @"Confirm deletion of";
Buttons = new PopupDialogButton[]
{
new PopupDialogDangerousButton
{
Text = @"Yes. Go for it.",
Action = deleteAction
},
new PopupDialogCancelButton
{
Text = @"No! Abort mission!",
},
};
}
}
}