Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IAssetLoader.cs
Go to the documentation of this file.
2
3namespace ReLogic.Content;
4
5public interface IAssetLoader
6{
7 bool TryLoad<T>(string assetName, IContentSource source, out T resultAsset) where T : class;
8}
bool TryLoad< T >(string assetName, IContentSource source, out T resultAsset)