Files
Ez2Lazer/SkinScriptingImplementation/osu.Game/Skinning/Scripting/SkinScriptingOverlayRegistration.cs
2025-08-27 23:57:40 +08:00

26 lines
695 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Overlays;
using osu.Game.Overlays.Settings;
using osu.Game.Overlays.Settings.Sections;
using osu.Game.Skinning.Scripting.Overlays;
namespace osu.Game.Skinning.Scripting
{
/// <summary>
/// 负责注册皮肤脚本设置到设置界面。
/// </summary>
public class SkinScriptingOverlayRegistration : Component
{
[Resolved]
private SettingsOverlay settingsOverlay { get; set; }
[BackgroundDependencyLoader]
private void load()
{
// 皮肤脚本设置部分已经在SkinSection中集成无需额外操作
}
}
}