Example #1
0
        public void Close(bool instant = false)
        {
            foreach (var screen in _screens)
            {
                screen.Close(instant);
            }

            DidClose();

            _baseGameUiHandler.PresentGameUI();
        }
Example #2
0
        public void Close()
        {
            foreach (var screen in _screens)
            {
                screen.Close();
            }

            DidClose();

            _baseGameUiHandler.PresentGameUI();
        }