refactor
This commit is contained in:
parent
54ebaa0fff
commit
d9884024ef
@ -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>
|
||||||
{
|
{
|
@ -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>
|
||||||
{
|
{
|
@ -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" />
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user