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