Files
brick-framework/GameCore/Logging/Interfaces/ILogger.cs

9 lines
216 B
C#

namespace GameCore.Logging.Interfaces;
public interface ILogger
{
void Debug(string message);
void Info(string message);
void Warn(string message);
void Error(string message, Exception? ex = null);
}