Uncomment MPQ, still not hooked back up

This commit is contained in:
Matt Nadareski
2025-08-29 08:03:01 -04:00
parent daf19a561c
commit 6ff6a7d4a4

View File

@@ -224,18 +224,19 @@ namespace ExtractionTool
}
// MoPaQ (MPQ) archive -- Reimplement
// else if (wrapper is MoPaQ mpq)
// {
// Console.WriteLine("Extracting MoPaQ contents");
// Console.WriteLine();
else if (wrapper is MoPaQ mpq)
{
Console.WriteLine("Extracting MoPaQ contents");
Console.WriteLine();
#if NET20 || NET35 || !(WINX86 || WINX64)
// Console.WriteLine("Extraction is not supported for this framework!");
// Console.WriteLine();
Console.WriteLine("Extraction is not supported for this framework!");
Console.WriteLine();
#else
// mpq.Extract(stream, file, outputDirectory, includeDebug: true);
Console.WriteLine("Extraction needs to be reimplemented for this framework!");
Console.WriteLine();
#endif
// }
}
// New Executable
else if (wrapper is NewExecutable nex)