1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 23:37:52 +08:00
osu-lazer/osu.Game/Overlays/Notifications/SimpleErrorNotification.cs

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

18 lines
500 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.
using osu.Framework.Graphics.Sprites;
namespace osu.Game.Overlays.Notifications
{
public partial class SimpleErrorNotification : SimpleNotification
{
2023-07-05 16:25:16 +08:00
public override string PopInSampleName => "UI/notification-error";
public SimpleErrorNotification()
{
Icon = FontAwesome.Solid.Bomb;
}
}
}