// // 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