8 lines
180 B
C#
8 lines
180 B
C#
|
using System;
|
||
|
using RecrownedGTK.AssetsSystem.Information;
|
||
|
namespace RecrownedGTK.AssetsSystem.Loaders {
|
||
|
public interface ILoader
|
||
|
{
|
||
|
IInfo load(string path);
|
||
|
}
|
||
|
}
|