namespace SabreTools.Wrappers
{
///
/// Represents an item that is extractable
///
/// TODO: Investigate whether it's possible to do an ExtractToStream
public interface IExtractable
{
///
/// Extract to an output directory
///
/// Output directory to write to
/// True to include debug data, false otherwise
/// True if extraction succeeded, false otherwise
public bool Extract(string outputDirectory, bool includeDebug);
}
}