mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 08:49:59 +09:00
Add missing button
This commit is contained in:
17
osu.Game/Screens/Select/FooterButtonOptions.cs
Normal file
17
osu.Game/Screens/Select/FooterButtonOptions.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Extensions.Color4Extensions;
|
||||
using osu.Game.Graphics;
|
||||
|
||||
namespace osu.Game.Screens.Select
|
||||
{
|
||||
public class FooterButtonOptions : FooterButton
|
||||
{
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(OsuColour colours)
|
||||
{
|
||||
SelectedColour = colours.Blue;
|
||||
DeselectedColour = SelectedColour.Opacity(0.5f);
|
||||
Text = @"options";
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user