8 lines
210 B
C#
8 lines
210 B
C#
namespace DaggerFramework.Resources
|
|
{
|
|
public interface IResourceLoader<T> where T : Resource
|
|
{
|
|
public IEnumerable<string> SupportedExtensions { get; }
|
|
public T Load(string path);
|
|
}
|
|
} |