You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
281 B
14 lines
281 B
3 years ago
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace ET
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 管理Scene上的UI
|
||
|
/// </summary>
|
||
|
[ComponentOf(typeof(Scene))]
|
||
|
[ChildType(typeof(UI))]
|
||
|
public class UIComponent: Entity, IAwake
|
||
|
{
|
||
|
public Dictionary<string, UI> UIs = new Dictionary<string, UI>();
|
||
|
}
|
||
|
}
|