26 lines
516 B
C#
26 lines
516 B
C#
using EasyInject.Attributes;
|
||
using System.Collections;
|
||
using System.Collections.Generic;
|
||
using UnityEngine;
|
||
/// <summary>
|
||
/// UIµ¯´°¹ÜÀí
|
||
/// </summary>
|
||
[GameObjectBean]
|
||
public class UIPopManage : MonoBehaviour
|
||
{
|
||
List<IUIPop> uIViews = new List<IUIPop>();
|
||
void Start()
|
||
{
|
||
uIViews = ApplicationBoot.Instance.GetBeans<IUIPop>();
|
||
}
|
||
|
||
// Update is called once per frame
|
||
public void CloseAllPop()
|
||
{
|
||
foreach (IUIPop op in uIViews)
|
||
{
|
||
op.Close();
|
||
}
|
||
}
|
||
}
|