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.RegisterApp(new TimerService()); } } }