1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 04:47:25 +08:00
osu-lazer/osu.Game/Online/Placeholders/LoginPlaceholder.cs

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

25 lines
697 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.
2022-06-17 15:37:17 +08:00
#nullable disable
2020-01-05 04:09:40 +08:00
using osu.Framework.Allocation;
2020-01-05 02:25:49 +08:00
using osu.Framework.Graphics.Sprites;
using osu.Framework.Localisation;
2020-01-05 02:25:49 +08:00
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(LocalisableString 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
}
}
}