Implement GIF conversion

This commit is contained in:
2025-09-27 19:43:27 +08:00
parent fcb7c6be8d
commit d92f477390
14 changed files with 1545 additions and 128 deletions

View File

@ -25,13 +25,13 @@ namespace PKG
{
public:
EXPKG(const CommandArgs& commandArgs);
EXPKG(const std::filesystem::path& filePath, const std::filesystem::path& outDir = "out");
EXPKG(const std::string& filePath, const std::string& outDir = "out");
private:
static FILE_EXTENSION checkExtension(const std::filesystem::path& filePath);
void ExtractTex(const std::filesystem::path& path = "");
void ExtractTex(const std::filesystem::path& path = "") const;
void ExtractPkg();
void Run();