Lots of SzGui work

This commit is contained in:
2026-02-25 00:08:27 -06:00
parent e6749c51c4
commit dad80e30da
20 changed files with 968 additions and 22 deletions

23
SzGui/SzLogger.cs Normal file
View File

@@ -0,0 +1,23 @@
using SzCore;
namespace SzGui;
public class SzLogger : ISzLogger
{
public bool LogToFile { get; set; }
public string LogFilePath { get; set; }
public int LogFileMaxLines { get; set; }
public void Log(string text)
{
}
public void LogError(string text)
{
}
public void LogWarning(string text)
{
}
}