recrownedgtk/RecrownedGTK/AssetsSystem/AssetLoader.cs

8 lines
232 B
C#
Raw Normal View History

namespace RecrownedGTK.AssetsSystem {
public class AssetLoader {
public T Load<T>(string path) {
throw new System.NotImplementedException();
//TODO Implement a method of loading.
}
}
}