rhythmbullet/RhythmBullet/Zer01HD/Utilities/ContentSystem/IContentResolver.cs

19 lines
480 B
C#
Raw Normal View History

2018-09-12 06:32:05 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RhythmBullet.Zer01HD.Utilities.ContentSystem
{
public interface IContentResolver
2018-09-12 06:32:05 +00:00
{
/// <summary>
/// Returns the complete path with the content folder as root.
/// </summary>
/// <param name="assetName">Is the asset's name</param>
/// <returns></returns>
string Load(string assetName);
2018-09-12 06:32:05 +00:00
}
}