summaryrefslogtreecommitdiff
path: root/SurvivalTest/Assets/Scripts/UI/UIManager_Panels.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SurvivalTest/Assets/Scripts/UI/UIManager_Panels.cs')
-rw-r--r--SurvivalTest/Assets/Scripts/UI/UIManager_Panels.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/SurvivalTest/Assets/Scripts/UI/UIManager_Panels.cs b/SurvivalTest/Assets/Scripts/UI/UIManager_Panels.cs
new file mode 100644
index 0000000..e3914d3
--- /dev/null
+++ b/SurvivalTest/Assets/Scripts/UI/UIManager_Panels.cs
@@ -0,0 +1,26 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public enum PanelType
+{
+ None,
+
+ PanelLevelBar,
+}
+
+public partial class UIManager : Singleton<UIManager>
+{
+ private Dictionary<PanelType, string> m_Panels = new Dictionary<PanelType, string>();
+
+ void SetPanels()
+ {
+ m_Panels.Add(PanelType.PanelLevelBar, "");
+ }
+
+ void OpenPanel(PanelType type, object param)
+ {
+
+ }
+
+}