8 lines
191 B
C#
8 lines
191 B
C#
namespace LootDumpProcessor.Process.Writer;
|
|
|
|
public interface IWriter
|
|
{
|
|
void WriteAll(Dictionary<OutputFileType, object> dumpData);
|
|
|
|
void Write(OutputFileType type, object data);
|
|
} |