Refactor font resolving to its own class/file

This commit is contained in:
2026-03-30 20:24:36 +09:00
parent a9674a3f45
commit 534af58f44
4 changed files with 99 additions and 71 deletions
+6
View File
@@ -0,0 +1,6 @@
namespace MayShow.Interfaces;
interface ILogger
{
void LogInfo(string message, params object[]? arguments);
}