Exemplo n.º 1
0
 protected void Awake()
 {
     Debug.Log("UIManager Awake ");
     _instance = this;
     InitUIManager();
 }
Exemplo n.º 2
0
 public static UIManager GetInstance()
 {
     if (_instance == null)
         _instance = new UIManager();
     return _instance;
 }