using EasyInject.Attributes; using NUnit.Framework; using System.Collections.Generic; using UnityEngine; /// /// UI¹ÜÀí /// [GameObjectBean] public class UIManage : MonoBehaviour,IApplcationShutdown { private List views = new(); // Start is called before the first frame update void Start() { views = ApplicationBoot.Instance.GetBeans(); } // Update is called once per frame void Update() { } public void Shutdown() { throw new System.NotImplementedException(); } }