2017-02-10 15:26:43 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-02-21 12:52:30 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-02-12 13:50:42 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2017-02-21 12:52:30 +08:00
|
|
|
|
using osu.Framework.Graphics.Colour;
|
|
|
|
|
|
2017-02-12 13:50:42 +08:00
|
|
|
|
|
2017-02-10 15:26:43 +08:00
|
|
|
|
namespace osu.Game.Overlays.Notifications
|
|
|
|
|
{
|
|
|
|
|
public class ProgressCompletionNotification : SimpleNotification
|
|
|
|
|
{
|
2017-03-09 14:52:40 +08:00
|
|
|
|
public ProgressCompletionNotification()
|
2017-02-10 15:26:43 +08:00
|
|
|
|
{
|
2017-02-12 13:50:42 +08:00
|
|
|
|
Icon = FontAwesome.fa_check;
|
2017-02-10 15:26:43 +08:00
|
|
|
|
}
|
2017-02-21 12:52:30 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
|
|
|
|
{
|
|
|
|
|
IconBackgound.ColourInfo = ColourInfo.GradientVertical(colours.GreenDark, colours.GreenLight);
|
|
|
|
|
}
|
2017-02-10 15:26:43 +08:00
|
|
|
|
}
|
|
|
|
|
}
|