AdvancedLauncher.SDK.Model.Config.Settings.MergeConfig C# (CSharp) Method

MergeConfig() public method

Merge data of other Settings into current
public MergeConfig ( Settings source ) : void
source Settings Source
return void
        public void MergeConfig(Settings source)
        {
            this.LanguageFile = source.LanguageFile;
            this.AppTheme = source.AppTheme;
            this.ThemeAccent = source.ThemeAccent;
            this.CheckForUpdates = source.CheckForUpdates;
        }