16 lines
510 B
C#
Raw Normal View History

2019-01-13 14:22:53 -06:00
namespace RecrownedAthenaeum.ContentSystem
{
2019-01-14 00:34:35 -06:00
/// <summary>
2019-11-24 00:17:21 -05:00
/// Modifies the given path based on a name. Used to simplify long paths for the <see cref="AssetManager"/>
2019-01-14 00:34:35 -06:00
/// </summary>
public interface IContentPathResolver
{
/// <summary>
/// Returns the complete path with the content folder as root.
/// </summary>
/// <param name="contentPath">Is the asset's name</param>
/// <returns></returns>
string Modify(string contentPath);
}
}