29 lines
580 B
C#
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();
|
|
}
|
|
}
|