9 lines
214 B
C#

using System;
using RecrownedGTK.AssetsSystem.Information;
namespace RecrownedGTK.AssetsSystem.Loaders {
public interface ILoader
{
Type resultingType {get;}
IInfo load(string path);
}
}