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
|
|
|
|
|
2017-12-08 21:27:07 +08:00
|
|
|
|
using System;
|
|
|
|
|
using osu.Game.Overlays.Dialog;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-12-08 21:27:07 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Maintenance
|
|
|
|
|
{
|
2022-07-24 03:20:27 +08:00
|
|
|
|
public class MassDeleteConfirmationDialog : DeleteConfirmationDialog
|
2017-12-08 21:27:07 +08:00
|
|
|
|
{
|
2021-11-26 17:18:45 +08:00
|
|
|
|
public MassDeleteConfirmationDialog(Action deleteAction)
|
2017-12-08 21:27:07 +08:00
|
|
|
|
{
|
|
|
|
|
BodyText = "Everything?";
|
2022-07-24 03:20:27 +08:00
|
|
|
|
DeleteAction = deleteAction;
|
2017-12-08 21:27:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|