mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-30 14:44:31 +02:00
22 lines
438 B
C
22 lines
438 B
C
//
|
|
// Created by marcelohdez on 10/22/22.
|
|
//
|
|
|
|
#ifndef LAUNCHER_INSTANCECOPYPREFS_H
|
|
#define LAUNCHER_INSTANCECOPYPREFS_H
|
|
|
|
struct InstanceCopyPrefs {
|
|
explicit InstanceCopyPrefs(bool setAll);
|
|
~InstanceCopyPrefs() = default;
|
|
|
|
bool copySaves;
|
|
bool keepPlaytime;
|
|
bool copyGameOptions;
|
|
bool copyResourcePacks;
|
|
bool copyShaderPacks;
|
|
bool copyServers;
|
|
bool copyMods;
|
|
};
|
|
|
|
#endif // LAUNCHER_INSTANCECOPYPREFS_H
|