mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-02 23:54:34 +02:00
21 lines
432 B
C
21 lines
432 B
C
//
|
|
// Created by marcelohdez on 10/22/22.
|
|
//
|
|
|
|
#ifndef LAUNCHER_INSTANCECOPYPREFS_H
|
|
#define LAUNCHER_INSTANCECOPYPREFS_H
|
|
|
|
struct InstanceCopyPrefs {
|
|
bool copySaves = true;
|
|
bool keepPlaytime = true;
|
|
bool copyGameOptions = true;
|
|
bool copyResourcePacks = true;
|
|
bool copyShaderPacks = true;
|
|
bool copyServers = true;
|
|
bool copyMods = true;
|
|
|
|
bool allTrue() const;
|
|
};
|
|
|
|
#endif // LAUNCHER_INSTANCECOPYPREFS_H
|