17 lines
340 B
C#
17 lines
340 B
C#
using Voile.UI;
|
|
|
|
namespace Voile.Resources;
|
|
|
|
public class StyleLoader : ResourceLoader<Style>
|
|
{
|
|
public override IEnumerable<string> SupportedExtensions =>
|
|
[
|
|
".toml"
|
|
];
|
|
|
|
protected override Style LoadResource(string path)
|
|
{
|
|
// TODO: implement loading styles.
|
|
return new Style(string.Empty);
|
|
}
|
|
} |