Exemplo n.º 1
0
 public void OpenAbout()
 {
     if (_about == null)
     {
         _about = OpenWindow(Define._uiAboutPrefabPath, _mainPanel) as UIAbout;
     }
 }
Exemplo n.º 2
0
 public void CloseAbout()
 {
     if (_about != null)
     {
         CloseWindow(_about);
         _about = null;
     }
 }