namespace RecrownedGTK.Assets { /// /// A resolver that does nothing. Used for looking in the root by default. /// public class NormalAssetPathResolver : IAssetPathResolver { /// /// Passes the path through without modification as this is the normal content resolver and is meant to just pass things on. /// /// The path to modify. /// public string Modify(string contentPath) { return contentPath; } } }