mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
15 lines
317 B
C++
15 lines
317 B
C++
//
|
|
// Created by marcelohdez on 10/22/22.
|
|
//
|
|
|
|
#include "InstanceCopyPrefs.h"
|
|
|
|
InstanceCopyPrefs::InstanceCopyPrefs(bool setAll)
|
|
: copySaves(setAll),
|
|
keepPlaytime(setAll),
|
|
copyGameOptions(setAll),
|
|
copyResourcePacks(setAll),
|
|
copyShaderPacks(setAll),
|
|
copyServers(setAll),
|
|
copyMods(setAll)
|
|
{}
|