diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-08-12 21:18:22 +0100 |
---|---|---|
committer | TheKodeToad <TheKodeToad@proton.me> | 2023-08-12 21:20:51 +0100 |
commit | 5056a51c188ef366d5ea13b6794dd14b11f78075 (patch) | |
tree | f559a49912d5ba9553f69847f7841784a14f7153 /launcher/modplatform/flame/FlamePackExportTask.h | |
parent | 3aba7f8fec45c7c87be486d8f6b5c96f69facf93 (diff) | |
download | PrismLauncher-5056a51c188ef366d5ea13b6794dd14b11f78075.tar.gz PrismLauncher-5056a51c188ef366d5ea13b6794dd14b11f78075.tar.bz2 PrismLauncher-5056a51c188ef366d5ea13b6794dd14b11f78075.zip |
Improvements and refinements to pack export
- Persist fields
- Toggle optional files
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
Diffstat (limited to 'launcher/modplatform/flame/FlamePackExportTask.h')
-rw-r--r-- | launcher/modplatform/flame/FlamePackExportTask.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/launcher/modplatform/flame/FlamePackExportTask.h b/launcher/modplatform/flame/FlamePackExportTask.h index d3dc6281..78b46e91 100644 --- a/launcher/modplatform/flame/FlamePackExportTask.h +++ b/launcher/modplatform/flame/FlamePackExportTask.h @@ -30,6 +30,7 @@ class FlamePackExportTask : public Task { FlamePackExportTask(const QString& name, const QString& version, const QString& author, + bool optionalFiles, InstancePtr instance, const QString& output, MMCZip::FilterFunction filter); @@ -44,6 +45,7 @@ class FlamePackExportTask : public Task { // inputs const QString name, version, author; + const bool optionalFiles; const InstancePtr instance; MinecraftInstance* mcInstance; const QDir gameRoot; |