namespace RecrownedAthenaeum.ContentSystem { /// /// Modifies the given path based on a name. Used to simplify long paths for the /// public interface IContentPathResolver { /// /// Returns the complete path with the content folder as root. /// /// Is the asset's name /// string Modify(string contentPath); } }