mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
9 lines
166 B
C#
9 lines
166 B
C#
namespace AssetRipper.Import.Logging;
|
|
|
|
public interface ILogger
|
|
{
|
|
void Log(LogType type, LogCategory category, string message);
|
|
|
|
void BlankLine(int numLines);
|
|
}
|