1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-16 04:52:35 +08:00
Files
osu-lazer/osu.Game/Graphics/UserInterface/DangerousRoundedButton.cs
T
2025-11-25 00:55:42 +09:00

18 lines
520 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.Game.Graphics.UserInterfaceV2;
namespace osu.Game.Graphics.UserInterface
{
public sealed partial class DangerousRoundedButton : RoundedButton
{
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
BackgroundColour = colours.DangerousButtonColour;
}
}
}