SDF font WIP

This commit is contained in:
2023-06-15 21:32:57 +02:00
parent 06da2c3f7f
commit 9d3a96ba81
6 changed files with 15 additions and 1 deletions

View File

@@ -1,9 +1,11 @@
using SharpFont;
namespace DaggerFramework;
public class FontLoader : ResourceLoader<Font>
{
public override Font Load(string path)
{
throw new NotImplementedException();
return default;
}
}