Files
Ez2Lazer/osu.Game/Graphics/UserInterface/DangerousRoundedButton.cs
LA 0c39d1e367 同步更新,调整mod代码,调整空判系统代码防报错。
待解决:游戏不结束,空判不扣血,空判降低acc
2025-11-30 14:05:16 +08: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;
}
}
}