Пример #1
0
        public bool CanRegister()
        {
            if (WindowByName == null)
            {
                return(false);
            }
            var remoteButton = WindowByName.FindButton(36);

            return(remoteButton != null && remoteButton.Clickable);
        }
Пример #2
0
        public bool CanUpdateGearSet()
        {
            var button = WindowByName.FindButton(18);

            if (button == null)
            {
                return(false);
            }

            return(button.Clickable);
        }
Пример #3
0
        public bool CanRequestInspection()
        {
            var button = WindowByName.FindButton(10);

            if (button != null)
            {
                return(button.Clickable);
            }

            return(false);
        }
Пример #4
0
        public bool CanAutoSubmit()
        {
            var button = WindowByName.FindButton(8);

            if (button != null)
            {
                return(button.Clickable);
            }

            return(false);
        }