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