ARKBreedingStats.Settings.saveSettings C# (CSharp) Метод

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

private saveSettings ( ) : void
Результат void
        private void saveSettings()
        {
            for (int s = 0; s < 8; s++)
            {
                cc.multipliers[s] = multSetter[s].Multipliers;
            }
            cc.breedingMultipliers[0] = (double)numericUpDownHatching.Value;
            cc.breedingMultipliers[1] = (double)numericUpDownMaturation.Value;
            cc.maxDomLevel = (int)numericUpDownDomLevelNr.Value;
            cc.maxWildLevel = (int)numericUpDownMaxWildLevel.Value;
            cc.maxBreedingSuggestions = (int)numericUpDownMaxBreedingSug.Value;
            cc.imprintingMultiplier = (double)numericUpDownImprintingM.Value;
            cc.tamingSpeedMultiplier = (double)numericUpDownTamingSpeed.Value;
            cc.tamingFoodRateMultiplier = (double)numericUpDownTamingFoodRate.Value;
            Properties.Settings.Default.autosave = checkBoxAutoSave.Checked;
            Properties.Settings.Default.autosaveMinutes = (int)numericUpDownAutosaveMinutes.Value;
            Properties.Settings.Default.OCR = chkExperimentalOCR.Checked;
            Properties.Settings.Default.syncCollection = chkCollectionSync.Checked;
            Properties.Settings.Default.celsius = radioButtonCelsius.Checked;
        }