1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 09:32:55 +08:00

Remove free mods button

This commit is contained in:
mk56-spn 2023-01-30 12:57:24 +01:00
parent 41f5e5143a
commit f5d579144b
2 changed files with 0 additions and 22 deletions

View File

@ -50,7 +50,6 @@ namespace osu.Game.Tests.Visual.SongSelect
PreviousRandom = () => previousRandomCalled = true
});
footer.AddButton(new FooterButtonOptionsV2());
footer.AddButton(new FooterButtonFreeModsV2());
InputManager.MoveMouseTo(Vector2.Zero);

View File

@ -1,21 +0,0 @@
// 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;
namespace osu.Game.Screens.Select.FooterV2
{
public partial class FooterButtonFreeModsV2 : FooterButtonV2
{
[BackgroundDependencyLoader]
private void load(OsuColour colour)
{
//No design exists for this button!
Icon = FontAwesome.Solid.ExpandArrowsAlt;
Text = "Freemods";
AccentColour = colour.Yellow;
}
}
}