recrownedgtk/RecrownedGTK/AssetsSystem/Loaders/ILoader.cs

8 lines
180 B
C#
Raw Normal View History

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