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