Refactor. again.

This commit is contained in:
Harrison Deng 2019-01-15 17:44:15 -06:00
parent 441a4d1a36
commit 748de59052
12 changed files with 6 additions and 24 deletions

View File

@ -1,5 +1,4 @@
using Microsoft.Xna.Framework.Content.Pipeline; using Microsoft.Xna.Framework.Content.Pipeline;
using Newtonsoft.Json;
using System.IO; using System.IO;
namespace RecrownedAthenaeum.Pipeline.NinePatch namespace RecrownedAthenaeum.Pipeline.NinePatch

View File

@ -1,6 +1,5 @@
using Microsoft.Xna.Framework.Content.Pipeline; using Microsoft.Xna.Framework.Content.Pipeline;
using Newtonsoft.Json; using Newtonsoft.Json;
using System.Text;
namespace RecrownedAthenaeum.Pipeline.NinePatch namespace RecrownedAthenaeum.Pipeline.NinePatch
{ {

View File

@ -1,5 +1,4 @@
using Microsoft.Xna.Framework.Content.Pipeline; using Microsoft.Xna.Framework.Content.Pipeline;
using Newtonsoft.Json;
using System.IO; using System.IO;
using TImport = System.String; using TImport = System.String;

View File

@ -1,6 +1,5 @@
using Microsoft.Xna.Framework.Content.Pipeline; using Microsoft.Xna.Framework.Content.Pipeline;
using Newtonsoft.Json; using Newtonsoft.Json;
using System.Text;
namespace RecrownedAthenaeum.Pipeline.TextureAtlas namespace RecrownedAthenaeum.Pipeline.TextureAtlas
{ {

View File

@ -1,7 +1,6 @@
using Microsoft.Xna.Framework.Content.Pipeline; using Microsoft.Xna.Framework.Content.Pipeline;
using Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler; using Microsoft.Xna.Framework.Content.Pipeline.Serialization.Compiler;
using Newtonsoft.Json; using Newtonsoft.Json;
using System;
using TWrite = RecrownedAthenaeum.Pipeline.TextureAtlas.TextureAtlasData; using TWrite = RecrownedAthenaeum.Pipeline.TextureAtlas.TextureAtlasData;
namespace RecrownedAthenaeum.Pipeline.TextureAtlas namespace RecrownedAthenaeum.Pipeline.TextureAtlas

View File

@ -1,5 +1,4 @@
using Newtonsoft.Json; using Newtonsoft.Json;
using RecrownedAthenaeum.Pipeline.NinePatch;
using RecrownedAthenaeum.Tools.CommandProcessor; using RecrownedAthenaeum.Tools.CommandProcessor;
using System; using System;
using System.IO; using System.IO;

View File

@ -1,6 +1,4 @@
using Newtonsoft.Json; using Newtonsoft.Json;
using RecrownedAthenaeum.Pipeline.NinePatch;
using RecrownedAthenaeum.Pipeline.TextureAtlas;
using SixLabors.ImageSharp; using SixLabors.ImageSharp;
using SixLabors.ImageSharp.PixelFormats; using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing; using SixLabors.ImageSharp.Processing;

View File

@ -1,9 +1,6 @@
using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Graphics;
using Newtonsoft.Json; using Newtonsoft.Json;
using RecrownedAthenaeum.Pipeline.NinePatch;
using RecrownedAthenaeum.Pipeline.TextureAtlas;
using System.Text;
namespace RecrownedAthenaeum.Pipeline namespace RecrownedAthenaeum.Pipeline
{ {

View File

@ -67,9 +67,9 @@
<Compile Include="Input\InputUtilities.cs" /> <Compile Include="Input\InputUtilities.cs" />
<Compile Include="ParticleSystem\Particle.cs" /> <Compile Include="ParticleSystem\Particle.cs" />
<Compile Include="Persistence\PreferencesManager.cs" /> <Compile Include="Persistence\PreferencesManager.cs" />
<Compile Include="Pipeline\NinePatchData.cs" /> <Compile Include="Serializable\NinePatchData.cs" />
<Compile Include="Pipeline\NinePatchDataReader.cs" /> <Compile Include="Pipeline\NinePatchDataReader.cs" />
<Compile Include="Pipeline\TextureAtlasData.cs" /> <Compile Include="Serializable\TextureAtlasData.cs" />
<Compile Include="Pipeline\TextureAtlasDataReader.cs" /> <Compile Include="Pipeline\TextureAtlasDataReader.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Render\RectangleRenderer.cs" /> <Compile Include="Render\RectangleRenderer.cs" />
@ -91,7 +91,7 @@
<Compile Include="UI\Skin\Definitions\TextButtonSkinDefinition.cs" /> <Compile Include="UI\Skin\Definitions\TextButtonSkinDefinition.cs" />
<Compile Include="UI\Skin\Definitions\TextSkinDefinition.cs" /> <Compile Include="UI\Skin\Definitions\TextSkinDefinition.cs" />
<Compile Include="UI\Skin\Skin.cs" /> <Compile Include="UI\Skin\Skin.cs" />
<Compile Include="UI\Skin\SkinData.cs" /> <Compile Include="Serializable\SkinData.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Include="packages.config" /> <None Include="packages.config" />

View File

@ -1,6 +1,4 @@
using RecrownedAthenaeum.Pipeline.TextureAtlas; namespace RecrownedAthenaeum.Serializable
namespace RecrownedAthenaeum.Pipeline
{ {
/// <summary> /// <summary>
/// Represents a data structure for 9patches. /// Represents a data structure for 9patches.

View File

@ -1,11 +1,6 @@
using RecrownedAthenaeum.UI.Skin.Definitions; using RecrownedAthenaeum.UI.Skin.Definitions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RecrownedAthenaeum.UI.Skin namespace RecrownedAthenaeum.Serializable
{ {
/// <summary> /// <summary>
/// Data transfer object for game skins. /// Data transfer object for game skins.

View File

@ -1,6 +1,6 @@
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework;
namespace RecrownedAthenaeum.Pipeline namespace RecrownedAthenaeum.Serializable
{ {
/// <summary> /// <summary>
/// Data transfer object for a texture atlas. /// Data transfer object for a texture atlas.