refactors

This commit is contained in:
2019-01-22 19:31:15 -06:00
parent 2502556b33
commit 242d6013c0
11 changed files with 20 additions and 23 deletions

View File

@@ -1,12 +1,10 @@
using RecrownedAthenaeum.ContentSystem;
namespace RecrownedAthenaeum.ContentResolvers
namespace RecrownedAthenaeum.ContentSystem.ContentResolvers
{
class FontContentResolver : IContentPathModifier
internal class FontContentResolver : IContentPathResolver
{
readonly ResolutionContentResolver rcr;
public FontContentResolver(ResolutionContentResolver rcr)
internal FontContentResolver(ResolutionContentResolver rcr)
{
this.rcr = rcr;
}

View File

@@ -1,9 +1,8 @@
using RecrownedAthenaeum.ContentSystem;
using RecrownedAthenaeum.SpecialTypes;
using RecrownedAthenaeum.SpecialTypes;
namespace RecrownedAthenaeum.ContentResolvers
namespace RecrownedAthenaeum.ContentSystem.ContentResolvers
{
class ResolutionContentResolver : IContentPathModifier
internal class ResolutionContentResolver : IContentPathResolver
{
int width, height;
bool updated;