mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-30 06:34:27 +02:00
16 lines
317 B
C++
16 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)
|
|
{}
|