public void Close(bool instant = false) { foreach (var screen in _screens) { screen.Close(instant); } DidClose(); _baseGameUiHandler.PresentGameUI(); }
public void Close() { foreach (var screen in _screens) { screen.Close(); } DidClose(); _baseGameUiHandler.PresentGameUI(); }