Files
CreatGame/UnityGame/Assets/Scripts/GameLogic/UI/UIEnum.cs

13 lines
184 B
C#
Raw Normal View History

2025-07-15 15:33:35 +08:00
namespace CreatGame.UI
{
/// <summary>
/// 窗口层级
/// </summary>
public enum UILayer
{
Main,
Popup,
Notify,
System,
}
}