2024-07-25 16:00:51 +02:00

21 lines
481 B
C#

using Core;
using OverwatchTranscript;
namespace CodexPlugin.OverwatchSupport
{
public class CodexTranscriptWriter
{
private readonly ITranscriptWriter transcriptWriter;
public CodexTranscriptWriter(ITranscriptWriter transcriptWriter)
{
this.transcriptWriter = transcriptWriter;
}
public void ProcessLogs(IDownloadedLog[] downloadedLogs)
{
throw new NotImplementedException();
}
}
}