private void buttonLaunch_Click(object sender, EventArgs e)
        {
            if (!ValidRLLocation(ExeFinder.FileLocation))
            {
                MessageBox.Show("Invalid RocketLeague.exe file location.");
                return;
            }
            var arguments = CommandLineInterpreter.InterpretSettings(settings);

            Process.Start("\"" + settings.FileLocation + "\"", arguments);
        }