diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-06-22 13:26:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-22 13:26:47 -0700 |
commit | f1ebec641aa1a8f8992d6230a42001ad18c24a74 (patch) | |
tree | f0f15391035280e5c36cf3ed6119fbb0dbc6bcf1 /launcher/minecraft/mod/tasks/LocalModParseTask.h | |
parent | c5f16276d74283169eccf3f6a8845da910af0221 (diff) | |
parent | 470518eb3a3e0e43d67b7a15823c060755ad3284 (diff) | |
download | PrismLauncher-f1ebec641aa1a8f8992d6230a42001ad18c24a74.tar.gz PrismLauncher-f1ebec641aa1a8f8992d6230a42001ad18c24a74.tar.bz2 PrismLauncher-f1ebec641aa1a8f8992d6230a42001ad18c24a74.zip |
Merge pull request #1058 from Ryex/feature/images-for-resource-page
Feature: image coumn for Mod, Resource Pack, and Texturepack pages
Diffstat (limited to 'launcher/minecraft/mod/tasks/LocalModParseTask.h')
-rw-r--r-- | launcher/minecraft/mod/tasks/LocalModParseTask.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/launcher/minecraft/mod/tasks/LocalModParseTask.h b/launcher/minecraft/mod/tasks/LocalModParseTask.h index 38dae135..a0321709 100644 --- a/launcher/minecraft/mod/tasks/LocalModParseTask.h +++ b/launcher/minecraft/mod/tasks/LocalModParseTask.h @@ -25,6 +25,9 @@ bool processLitemod(Mod& mod, ProcessingLevel level = ProcessingLevel::Full); /** Checks whether a file is valid as a mod or not. */ bool validate(QFileInfo file); + +bool processIconPNG(const Mod& mod, QByteArray&& raw_data); +bool loadIconFile(const Mod& mod); } // namespace ModUtils class LocalModParseTask : public Task { |