mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-30 06:34:27 +02:00
17 lines
294 B
C++
17 lines
294 B
C++
//
|
|
// Created by marcelohdez on 10/22/22.
|
|
//
|
|
|
|
#include "InstanceCopyPrefs.h"
|
|
|
|
bool InstanceCopyPrefs::allTrue() const
|
|
{
|
|
return copySaves &&
|
|
keepPlaytime &&
|
|
copyGameOptions &&
|
|
copyResourcePacks &&
|
|
copyShaderPacks &&
|
|
copyServers &&
|
|
copyMods;
|
|
}
|