Files
CreatGame/UnityGame/Assets/Scripts/GameLogic/UI/UIManager.cs
2025-07-15 16:04:04 +08:00

15 lines
297 B
C#

using System.Collections.Generic;
namespace CreatGame.UI
{
public class UIManager : Singleton<UIManager>
{
private Dictionary<UILayer, Queue<UIViewBase>> m_Windows;
/// <summary>
///
/// </summary>
public UIManager()
{
}
}
}