13 lines
357 B
C#
13 lines
357 B
C#
namespace RecrownedAthenaeum.ContentSystem
|
|
{
|
|
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);
|
|
}
|
|
}
|