UIManager 생성 및 PopupUI 기능 구현

This commit is contained in:
2026-01-26 02:57:50 +09:00
parent e9dd959527
commit 98cb263c66
10 changed files with 593 additions and 1078 deletions

View File

@@ -7,8 +7,10 @@ public class Managers : MonoBehaviour
InputManager _input = new InputManager();
ResourceManager _resource = new ResourceManager();
UIManager _ui = new UIManager();
public static InputManager Input { get { return Instance._input; } }
public static ResourceManager Resource { get { return Instance._resource; } }
public static UIManager UI { get { return Instance._ui; } }
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()