This commit is contained in:
Harrison Deng 2019-01-20 21:45:15 -06:00
parent 54ebaa0fff
commit d9884024ef
4 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
using System.Text; using System.Text;
namespace RecrownedAthenaeum.Pipeline namespace RecrownedAthenaeum.ContentReaders
{ {
class NinePatchDataReader : ContentTypeReader<SpecialTypes.NinePatch> class NinePatchDataReader : ContentTypeReader<SpecialTypes.NinePatch>
{ {

View File

@ -4,7 +4,7 @@ using Newtonsoft.Json;
using RecrownedAthenaeum.Data; using RecrownedAthenaeum.Data;
using RecrownedAthenaeum.SpecialTypes; using RecrownedAthenaeum.SpecialTypes;
namespace RecrownedAthenaeum.Pipeline namespace RecrownedAthenaeum.ContentReaders
{ {
class TextureAtlasDataReader : ContentTypeReader<TextureAtlas> class TextureAtlasDataReader : ContentTypeReader<TextureAtlas>
{ {

View File

@ -68,9 +68,9 @@
<Compile Include="ParticleSystem\Particle.cs" /> <Compile Include="ParticleSystem\Particle.cs" />
<Compile Include="Persistence\PreferencesManager.cs" /> <Compile Include="Persistence\PreferencesManager.cs" />
<Compile Include="Data\NinePatchData.cs" /> <Compile Include="Data\NinePatchData.cs" />
<Compile Include="Pipeline\NinePatchDataReader.cs" /> <Compile Include="ContentReaders\NinePatchDataReader.cs" />
<Compile Include="Data\TextureAtlasData.cs" /> <Compile Include="Data\TextureAtlasData.cs" />
<Compile Include="Pipeline\TextureAtlasDataReader.cs" /> <Compile Include="ContentReaders\TextureAtlasDataReader.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Render\RectangleRenderer.cs" /> <Compile Include="Render\RectangleRenderer.cs" />
<Compile Include="Render\PrimitiveBatch.cs" /> <Compile Include="Render\PrimitiveBatch.cs" />

View File

@ -1,7 +1,7 @@
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Graphics;
using Newtonsoft.Json; using Newtonsoft.Json;
using RecrownedAthenaeum.Pipeline; using RecrownedAthenaeum.ContentReaders;
using RecrownedAthenaeum.Data; using RecrownedAthenaeum.Data;
using RecrownedAthenaeum.SpecialTypes; using RecrownedAthenaeum.SpecialTypes;
using System; using System;