AK056/Assets/script/ui/UIManage.cs
2025-05-07 11:20:40 +08:00

29 lines
580 B
C#

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