EasyFarm.ViewModels.MasterViewModel.Start C# (CSharp) 메소드

Start() 공개 메소드

Tells the program to start farming.
public Start ( ) : void
리턴 void
        public void Start()
        {
            // Return when the user has not selected a process.
            if (FFACE == null)
            {
                AppServices.InformUser("No process has been selected.");
                return;
            }

            if (GameEngine.IsWorking)
            {
                StopEngine();
            }
            else
            {
                StartEngine();
            }
        }