AlicizaX/Client/Packages/com.alicizax.unity.scene/Runtime/Scene/SceneComponent.cs
2025-04-28 19:45:45 +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>();
}
}
}