mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-08 18:06:41 +00:00
17 lines
567 B
C#
17 lines
567 B
C#
namespace SabreTools.Wrappers
|
|
{
|
|
/// <summary>
|
|
/// Represents an item that can have its model written directly
|
|
/// </summary>
|
|
public interface IWritable
|
|
{
|
|
/// <summary>
|
|
/// Write to an output directory
|
|
/// </summary>
|
|
/// <param name="outputPath">Output path to write to</param>
|
|
/// <param name="includeDebug">True to include debug data, false otherwise</param>
|
|
/// <returns>True if writing succeeded, false otherwise</returns>
|
|
public bool Write(string outputPath, bool includeDebug);
|
|
}
|
|
}
|