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