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

AxesAction() приватный Метод

private AxesAction ( ) : void
Результат void
        private void AxesAction()
        {
            if (_axesVisible)
            {
                ServiceLocator.PlayerLauncherService.AxesAction(false, 
                    AppResourcesHelper.Get("Player_AppBarButton_AxesOn"));
                _axesVisible = false;
            }
            else
            {
                ServiceLocator.PlayerLauncherService.AxesAction(true,
                      AppResourcesHelper.Get("Player_AppBarButton_AxesOff"));
                _axesVisible = true;
            }
        }