2022-12-01 22:34:09 +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;
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2022-12-03 02:16:25 +08:00
|
|
|
using osu.Game.Graphics;
|
2022-12-19 23:35:20 +08:00
|
|
|
using osu.Game.Input.Bindings;
|
2022-12-01 22:34:09 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Select.FooterV2
|
|
|
|
{
|
|
|
|
public partial class FooterButtonOptionsV2 : FooterButtonV2
|
|
|
|
{
|
|
|
|
[BackgroundDependencyLoader]
|
2022-12-03 02:16:25 +08:00
|
|
|
private void load(OsuColour colour)
|
2022-12-01 22:34:09 +08:00
|
|
|
{
|
|
|
|
Text = "Options";
|
|
|
|
Icon = FontAwesome.Solid.Cog;
|
2022-12-03 02:16:25 +08:00
|
|
|
AccentColour = colour.Purple1;
|
2022-12-19 23:35:20 +08:00
|
|
|
Hotkey = GlobalAction.ToggleBeatmapOptions;
|
2022-12-01 22:34:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|