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