mirror of
https://github.com/ppy/osu.git
synced 2024-11-16 07:20:24 +08:00
11fc811e2f
Regressed in https://github.com/ppy/osu/pull/28363.
27 lines
759 B
C#
27 lines
759 B
C#
// 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 osu.Framework.Allocation;
|
|
using osu.Game.Overlays.Dialog;
|
|
using osu.Game.Scoring;
|
|
|
|
namespace osu.Game.Screens.Select
|
|
{
|
|
public partial class LocalScoreDeleteDialog : DeletionDialog
|
|
{
|
|
private readonly ScoreInfo score;
|
|
|
|
public LocalScoreDeleteDialog(ScoreInfo score)
|
|
{
|
|
this.score = score;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(ScoreManager scoreManager)
|
|
{
|
|
BodyText = $"{score.User} ({score.DisplayAccuracy}, {score.Rank})";
|
|
DangerousAction = () => scoreManager.Delete(score);
|
|
}
|
|
}
|
|
}
|