recrownedgtk/RecrownedGTK/AssetsSystem/Loaders/ILoader.cs
Harrison d50ede989c Asset loading structure complete.
Loads information from loader.
information creates useable.
Minor folder restructuring.
Untested.
2020-04-17 22:11:16 -05:00

8 lines
180 B
C#

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