mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:47:29 +08:00
30 lines
854 B
C#
30 lines
854 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;
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
namespace osu.Game.Screens.Select
|
|
{
|
|
public partial class LocalScoreDeleteDialog : DangerousActionDialog
|
|
{
|
|
private readonly ScoreInfo score;
|
|
|
|
public LocalScoreDeleteDialog(ScoreInfo score)
|
|
{
|
|
this.score = score;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(ScoreManager scoreManager)
|
|
{
|
|
BodyText = $"{score.User} ({score.DisplayAccuracy}, {score.Rank})";
|
|
|
|
Icon = FontAwesome.Regular.TrashAlt;
|
|
DangerousAction = () => scoreManager.Delete(score);
|
|
}
|
|
}
|
|
}
|