mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 09:47:52 +08:00
34 lines
1.0 KiB
C#
34 lines
1.0 KiB
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 System;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Overlays.Dialog;
|
|
|
|
namespace osu.Game.Screens.Select
|
|
{
|
|
public class ImportFromStablePopup : PopupDialog
|
|
{
|
|
public ImportFromStablePopup(Action importFromStable)
|
|
{
|
|
HeaderText = @"You have no beatmaps!";
|
|
BodyText = "An existing copy of osu! was found, though.\nWould you like to import your beatmaps, skins and scores?";
|
|
|
|
Icon = FontAwesome.Solid.Plane;
|
|
|
|
Buttons = new PopupDialogButton[]
|
|
{
|
|
new PopupDialogOkButton
|
|
{
|
|
Text = @"Yes please!",
|
|
Action = importFromStable
|
|
},
|
|
new PopupDialogCancelButton
|
|
{
|
|
Text = @"No, I'd like to start from scratch",
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|