1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 10:37:46 +08:00
osu-lazer/osu.Game/Overlays/Toolbar/ToolbarHomeButton.cs

28 lines
760 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 18:19:50 +09:00
2020-09-03 16:28:53 +09:00
using osu.Framework.Allocation;
using osu.Game.Graphics;
2020-06-14 11:22:38 -07:00
using osu.Game.Input.Bindings;
2022-10-11 09:30:32 +02:00
using osu.Game.Localisation;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Overlays.Toolbar
{
2022-11-24 14:32:20 +09:00
public partial class ToolbarHomeButton : ToolbarButton
2018-04-13 18:19:50 +09:00
{
public ToolbarHomeButton()
{
ButtonContent.Width *= 1.4f;
2020-09-03 16:28:53 +09:00
Hotkey = GlobalAction.Home;
}
[BackgroundDependencyLoader]
private void load()
{
2022-10-11 10:59:07 +02:00
TooltipMain = ToolbarStrings.HomeHeaderTitle;
TooltipSub = ToolbarStrings.HomeHeaderDescription;
SetIcon(OsuIcon.Home);
2020-06-14 11:22:38 -07:00
}
2018-04-13 18:19:50 +09:00
}
}