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