mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 21:47:25 +08:00
28 lines
776 B
C#
28 lines
776 B
C#
// 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;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Input.Bindings;
|
|
|
|
namespace osu.Game.Overlays.Toolbar
|
|
{
|
|
public class ToolbarSocialButton : ToolbarOverlayToggleButton
|
|
{
|
|
public ToolbarSocialButton()
|
|
{
|
|
Icon = FontAwesome.Solid.Users;
|
|
TooltipMain = "Friends";
|
|
TooltipSub = "Interact with those close to you";
|
|
|
|
Hotkey = GlobalAction.ToggleSocial;
|
|
}
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
private void load(DashboardOverlay dashboard)
|
|
{
|
|
StateContainer = dashboard;
|
|
}
|
|
}
|
|
}
|