2022-05-19 04:20:02 +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;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Maintenance
|
|
|
|
|
{
|
|
|
|
|
public class MassVideoDeleteConfirmationDialog : MassDeleteConfirmationDialog
|
|
|
|
|
{
|
2022-05-26 06:01:30 +08:00
|
|
|
|
public MassVideoDeleteConfirmationDialog(Action deleteAction)
|
|
|
|
|
: base(deleteAction)
|
2022-05-19 04:20:02 +08:00
|
|
|
|
{
|
|
|
|
|
BodyText = "All beatmap videos? This cannot be undone!";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|