mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-09 02:16:55 +00:00
13 lines
325 B
C#
13 lines
325 B
C#
namespace SabreTools.Wrappers
|
|
{
|
|
public partial class WIA : IExtractable
|
|
{
|
|
/// <inheritdoc/>
|
|
public bool Extract(string outputDirectory, bool includeDebug)
|
|
{
|
|
var inner = GetInnerWrapper();
|
|
return inner?.Extract(outputDirectory, includeDebug) ?? false;
|
|
}
|
|
}
|
|
}
|