2019-01-24 16:43:03 +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.
2018-04-13 17:19:50 +08:00
using System ;
2019-03-27 18:29:27 +08:00
using osu.Framework.Graphics.Sprites ;
2018-04-13 17:19:50 +08:00
using osu.Game.Overlays.Dialog ;
namespace osu.Game.Screens.Select
{
public class ImportFromStablePopup : PopupDialog
{
public ImportFromStablePopup ( Action importFromStable )
{
HeaderText = @"You have no beatmaps!" ;
2021-05-13 18:10:26 +08:00
BodyText = "Would you like to import your beatmaps, skins, collections and scores from an existing osu!stable installation?\nThis will create a second copy of all files on disk." ;
2018-04-13 17:19:50 +08:00
2019-04-02 18:55:24 +08:00
Icon = FontAwesome . Solid . Plane ;
2018-04-13 17:19:50 +08:00
Buttons = new PopupDialogButton [ ]
{
new PopupDialogOkButton
{
Text = @"Yes please!" ,
Action = importFromStable
} ,
new PopupDialogCancelButton
{
Text = @"No, I'd like to start from scratch" ,
} ,
} ;
}
}
}