2019-01-13 20:22:53 +00:00
|
|
|
|
namespace RecrownedAthenaeum.ContentSystem
|
2018-11-30 02:41:06 +00: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);
|
|
|
|
|
}
|
|
|
|
|
}
|