namespace DaggerFramework.Resources; public class FontLoader : IResourceLoader { public IEnumerable SupportedExtensions => new string[] { ".ttf" }; public Type ResourceType => typeof(Font); public Resource Load(string path) { return default; } }