mirror of
https://github.com/ppy/osu.git
synced 2025-03-19 01:17:19 +08:00
Add missing button
This commit is contained in:
parent
772eb460fb
commit
c91b9c6032
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";
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user