2020-04-17 22:09:13 -05:00
|
|
|
using System;
|
|
|
|
using RecrownedGTK.AssetsSystem.Information;
|
|
|
|
namespace RecrownedGTK.AssetsSystem.Loaders {
|
|
|
|
public interface ILoader
|
|
|
|
{
|
2020-05-18 14:07:25 -05:00
|
|
|
Type resultingType {get;}
|
2020-04-17 22:09:13 -05:00
|
|
|
IInfo load(string path);
|
|
|
|
}
|
|
|
|
}
|