Catrobat.IDE.Core.ViewModels.Main.PlayerViewModel.GoBackAction C# (CSharp) Метод

GoBackAction() защищенный Метод

protected GoBackAction ( ) : void
Результат void
        protected override void GoBackAction()
        {
            if (ServiceLocator.PlayerLauncherService.HardwareBackButtonPressed() == true)
            {
                if (IsLaunchFromTile)
                {
                    // TODO: what to do when the Player has been started from a tile: terminate, terminate with confirmation question or default behavior?
                }
                else
                {
                    base.GoBackAction();
                }
            }
        }