9 lines
237 B
C#
9 lines
237 B
C#
namespace DaggerFramework.Resources
|
|
{
|
|
public interface IResourceLoader
|
|
{
|
|
public IEnumerable<string> SupportedExtensions { get; }
|
|
public Type ResourceType { get; }
|
|
public Resource Load(string path);
|
|
}
|
|
} |