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