recrownedathenaeum/RecrownedAthenaeum/ContentSystem/ContentResolvers/NormalContentResolver.cs

17 lines
348 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2018-12-14 20:25:14 +00:00
namespace RecrownedAthenaeum.ContentSystem.ContentResolvers
{
class NormalContentResolver : IContentPathModifier
{
public string Modify(string assetName)
{
return assetName;
}
}
}