mirror of
https://github.com/SK-la/Ez2Lazer.git
synced 2026-03-13 11:20:28 +00:00
18 lines
440 B
C#
18 lines
440 B
C#
using osu.Framework.Allocation;
|
|
using osu.Game.Skinning.Scripting;
|
|
|
|
namespace osu.Game
|
|
{
|
|
public partial class OsuGame
|
|
{
|
|
private SkinScriptingOverlayRegistration scriptingRegistration;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void loadSkinScripting()
|
|
{
|
|
// 添加皮肤脚本设置注册组件
|
|
Add(scriptingRegistration = new SkinScriptingOverlayRegistration());
|
|
}
|
|
}
|
|
}
|