namespace SabreTools.Wrappers
{
///
/// Represents an item that can have its model written directly
///
public interface IWritable
{
///
/// Write to an output directory
///
/// Output path to write to
/// True to include debug data, false otherwise
/// True if writing succeeded, false otherwise
public bool Write(string outputPath, bool includeDebug);
}
}