using AlicizaX; using UnityEngine; namespace AlicizaX.Timer.Runtime { [DisallowMultipleComponent] [AddComponentMenu("Game Framework/Timer")] [UnityEngine.Scripting.Preserve] public sealed class TimerComponent : MonoBehaviour { private void Awake() { AppServices.App.Register(new TimerService()); } } }