mirror of
https://github.com/ppy/osu
synced 2024-12-14 10:57:41 +00:00
20 lines
496 B
C#
20 lines
496 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.Game.Input.Bindings;
|
|
|
|
namespace osu.Game.Overlays.Toolbar
|
|
{
|
|
public class ToolbarHomeButton : ToolbarButton
|
|
{
|
|
public ToolbarHomeButton()
|
|
{
|
|
// todo: icon
|
|
TooltipMain = "Home";
|
|
TooltipSub = "Return to the main menu";
|
|
|
|
Hotkey = GlobalAction.Home;
|
|
}
|
|
}
|
|
}
|