osu/osu.Game/Collections/DeleteCollectionDialog.cs

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

20 lines
625 B
C#
Raw Normal View History

2020-09-04 18:52:07 +00: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;
2020-09-08 08:12:58 +00:00
using Humanizer;
using osu.Game.Database;
2020-09-04 18:52:07 +00:00
using osu.Game.Overlays.Dialog;
namespace osu.Game.Collections
{
public class DeleteCollectionDialog : DeleteConfirmationDialog
2020-09-04 18:52:07 +00:00
{
public DeleteCollectionDialog(Live<BeatmapCollection> collection, Action deleteAction)
2020-09-04 18:52:07 +00:00
{
BodyText = collection.PerformRead(c => $"{c.Name} ({"beatmap".ToQuantity(c.BeatmapMD5Hashes.Count)})");
DeleteAction = deleteAction;
2020-09-04 18:52:07 +00:00
}
}
}