9 lines
178 B
C#
9 lines
178 B
C#
namespace DaggerFramework;
|
|
|
|
public class FontLoader : ResourceLoader<Font>
|
|
{
|
|
public override Font Load(string path)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |