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

15 lines
297 B
C#
Raw Normal View History

2025-07-15 15:33:35 +08:00
using System.Collections.Generic;
namespace CreatGame.UI
{
public class UIManager : Singleton<UIManager>
{
private Dictionary<UILayer, Queue<UIViewBase>> m_Windows;
/// <summary>
///
/// </summary>
public UIManager()
{
}
}
}