com.alicizax.unity.framework/Runtime/Scene/SceneComponent.cs
2025-09-05 19:46:30 +08:00

17 lines
351 B
C#

using System;
using AlicizaX;
using UnityEngine;
namespace AlicizaX.Scene.Runtime
{
[DisallowMultipleComponent]
[AddComponentMenu("Game Framework/Scene")]
public sealed class SceneComponent : MonoBehaviour
{
private void Awake()
{
ModuleSystem.RegisterModule<ISceneModule,SceneModule>();
}
}
}