1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-18 21:53:21 +08:00
osu-lazer/osu.Game/Screens/Select/FooterV2/FooterButtonRandomV2.cs

21 lines
587 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;
using osu.Framework.Graphics.Sprites;
namespace osu.Game.Screens.Select.FooterV2
{
public partial class FooterButtonRandomV2 : FooterButtonV2
{
[BackgroundDependencyLoader]
private void load()
{
Text = "Random";
Icon = FontAwesome.Solid.Random;
AccentColour = Colour4.FromHex("#66CCFF");
}
}
}