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