2019-01-24 17:43:03 +09: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 18:19:50 +09:00
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2017-04-01 21:29:17 +03:00
|
|
|
|
using osu.Game.Graphics;
|
2018-11-20 16:51:59 +09:00
|
|
|
|
using osuTK.Graphics;
|
2017-04-05 22:51:43 +03:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-03-03 10:17:39 +09:00
|
|
|
|
namespace osu.Game.Screens.Play
|
2017-02-02 17:33:39 +09:00
|
|
|
|
{
|
2018-06-09 09:28:02 +02:00
|
|
|
|
public class FailOverlay : GameplayMenuOverlay
|
2017-02-02 17:33:39 +09:00
|
|
|
|
{
|
2017-04-05 22:36:03 +03:00
|
|
|
|
public override string Header => "failed";
|
|
|
|
|
public override string Description => "you're dead, try again?";
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-04-13 11:35:36 +09:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
2017-12-18 19:13:25 +09:00
|
|
|
|
AddButton("Retry", colours.YellowDark, () => OnRetry?.Invoke());
|
|
|
|
|
AddButton("Quit", new Color4(170, 27, 39, 255), () => OnQuit?.Invoke());
|
2017-04-13 11:35:36 +09:00
|
|
|
|
}
|
2017-02-02 17:33:39 +09:00
|
|
|
|
}
|
|
|
|
|
}
|