18 lines
442 B
C#
18 lines
442 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace ET
|
|
{
|
|
/// <summary>
|
|
/// 管理所有UI GameObject
|
|
/// </summary>
|
|
public class UIEventComponent : Entity
|
|
{
|
|
public static UIEventComponent Instance;
|
|
|
|
public Dictionary<string, AUIEvent> UIEvents = new Dictionary<string, AUIEvent>();
|
|
|
|
public Dictionary<int, Transform> UILayers = new Dictionary<int, Transform>();
|
|
}
|
|
} |