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