osu/osu.Game/Overlays/Notifications/ProgressCompletionNotification.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
737 B
C#
Raw Normal View History

// 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 09:19:50 +00:00
2017-02-21 04:52:30 +00:00
using osu.Framework.Allocation;
using osu.Game.Graphics;
2017-02-21 04:52:30 +00:00
using osu.Framework.Graphics.Colour;
using osu.Framework.Graphics.Sprites;
2018-04-13 09:19:50 +00:00
2017-02-10 07:26:43 +00:00
namespace osu.Game.Overlays.Notifications
{
public partial class ProgressCompletionNotification : SimpleNotification
{
public ProgressCompletionNotification()
2017-02-10 07:26:43 +00:00
{
2019-04-02 10:55:24 +00:00
Icon = FontAwesome.Solid.Check;
2017-02-10 07:26:43 +00:00
}
2018-04-13 09:19:50 +00:00
2017-02-21 04:52:30 +00:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
IconContent.Colour = ColourInfo.GradientVertical(colours.GreenDark, colours.GreenLight);
2017-02-21 04:52:30 +00:00
}
2017-02-10 07:26:43 +00:00
}
2018-01-05 11:21:19 +00:00
}