2018-11-30 02:41:06 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2018-12-04 13:45:09 +00:00
|
|
|
|
namespace RecrownedAthenaeum.ContentSystem
|
2018-11-30 02:41:06 +00:00
|
|
|
|
{
|
|
|
|
|
class NormalContentResolver : IContentPathModifier
|
|
|
|
|
{
|
|
|
|
|
public string Modify(string assetName)
|
|
|
|
|
{
|
|
|
|
|
return assetName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|