mirror of
https://github.com/osukey/osukey.git
synced 2025-05-03 04:37:30 +09:00
17 lines
445 B
C#
17 lines
445 B
C#
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";
|
|
}
|
|
}
|
|
} |