1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 05:27:26 +08:00
osu-lazer/osu.Game/Online/Placeholders/LoginPlaceholder.cs

22 lines
633 B
C#
Raw Normal View History

2020-01-05 04:09:40 +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.
using osu.Framework.Allocation;
2020-01-05 02:25:49 +08:00
using osu.Framework.Graphics.Sprites;
using osu.Game.Overlays;
namespace osu.Game.Online.Placeholders
{
public sealed class LoginPlaceholder : ClickablePlaceholder
2020-01-05 02:25:49 +08:00
{
[Resolved(CanBeNull = true)]
private LoginOverlay login { get; set; }
2020-01-05 02:25:49 +08:00
public LoginPlaceholder(string actionMessage)
: base(actionMessage, FontAwesome.Solid.UserLock)
2020-01-05 02:25:49 +08:00
{
Action = () => login?.Show();
2020-01-05 02:25:49 +08:00
}
}
}