2020-02-20 16:20:32 -05:00
|
|
|
|
namespace RecrownedGTK.AssetsSystem
|
2020-02-16 21:44:21 -05:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Modifies the given path based on a name. Used to simplify long paths for the <see cref="AssetManager"/>
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IAssetPathResolver
|
|
|
|
|
{
|
|
|
|
|
/// <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);
|
|
|
|
|
}
|
|
|
|
|
}
|