feat: added loggers

This commit is contained in:
2025-05-03 15:38:09 +03:00
parent c7aafd85bc
commit f43ab36742
5 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace Syntriax.Engine.Core.Debug;
public interface ILogger
{
Level FilterLevel { get; set; }
void Log(string message, Level level = Level.Info, bool force = false);
enum Level
{
Info,
Warning,
Error,
};
}