2025-06-23 11:42:47 -07:00

9 lines
166 B
C#

namespace AssetRipper.Import.Logging;
public interface ILogger
{
void Log(LogType type, LogCategory category, string message);
void BlankLine(int numLines);
}