private void FindRLExe()
 {
     try
     {
         ExeFinder.FindRocketLeagueExe();
         textBoxRLExeLocation.Text = ExeFinder.FileLocation;
     }
     catch (FileNotFoundException)
     {
         MessageBox.Show("Could not find RocketLeage.exe \nPlease manually locate the file.");
     }
 }
 private bool ValidRLLocation(string location)
 {
     return(!String.IsNullOrWhiteSpace(location) && ExeFinder.ExeLocatedHere(location));
 }