using System.Collections; using System.Collections.Generic; using UnityEngine; public enum PanelType { None, PanelLevelBar, } public partial class UIManager : Singleton { private Dictionary m_Panels = new Dictionary(); void SetPanels() { m_Panels.Add(PanelType.PanelLevelBar, ""); } void OpenPanel(PanelType type, object param) { } }