2025-01-23 19:06:48 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using AlicizaX.Runtime;
|
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
|
|
namespace AlicizaX.EventKit.Runtime
|
|
|
|
|
|
{
|
|
|
|
|
|
[DisallowMultipleComponent]
|
|
|
|
|
|
[AddComponentMenu("Game Framework/EventKit")]
|
|
|
|
|
|
[UnityEngine.Scripting.Preserve]
|
|
|
|
|
|
public sealed class EventKitComponent : GameFrameworkComponent
|
|
|
|
|
|
{
|
|
|
|
|
|
protected override void Awake()
|
|
|
|
|
|
{
|
|
|
|
|
|
IsAutoRegister = false;
|
|
|
|
|
|
base.Awake();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2025-03-04 18:40:14 +08:00
|
|
|
|
}
|