Files
simulation_core/lib/termsharp/Vt100/IDecoderLogger.cs

15 lines
232 B
C#
Raw Normal View History

//
// Copyright (c) Antmicro
//
// Full license details are defined in the 'LICENSE' file.
//
namespace TermSharp.Vt100
{
public interface IDecoderLogger
{
void Log(string format, params object[] args);
}
}