mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 17:27:25 +08:00
23 lines
672 B
C#
23 lines
672 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.Graphics;
|
|
using osu.Game.Input.Bindings;
|
|
|
|
namespace osu.Game.Screens.Select.FooterV2
|
|
{
|
|
public partial class FooterButtonOptionsV2 : FooterButtonV2
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colour)
|
|
{
|
|
Text = "Options";
|
|
Icon = FontAwesome.Solid.Cog;
|
|
AccentColour = colour.Purple1;
|
|
Hotkey = GlobalAction.ToggleBeatmapOptions;
|
|
}
|
|
}
|
|
}
|