Пример #1
0
        public SettingsFile Copy()
        {
            SettingsFile Result = new SettingsFile();

            Result.NaturalGroundingFolder = NaturalGroundingFolder;
            Result.SvpPath          = SvpPath;
            Result.MpcPath          = MpcPath;
            Result.AutoDownload     = AutoDownload;
            Result.EnableSvp        = EnableSvp;
            Result.EnableMadVR      = EnableMadVR;
            Result.ChangeAudioPitch = ChangeAudioPitch;
            Result.Widescreen       = Widescreen;
            Result.MediaPlayerApp   = MediaPlayerApp;
            Result.Download         = Download?.Copy();
            Result.Zoom             = Zoom;
            Result.GraphicDeviceId  = GraphicDeviceId;
            return(Result);
        }