Merge branch 'main' into '3dSkinRenderer'

This commit is contained in:
miku-666
2024-06-22 00:41:29 +02:00
18 changed files with 22 additions and 10 deletions

View File

@@ -4,6 +4,7 @@ using System.IO;
using System.Runtime.InteropServices;
using PckStudio.Extensions;
using PckStudio.Internal;
using PckStudio.Internal.App;
using SharpMSS;
namespace PckStudio.API.Miles

View File

@@ -9,6 +9,7 @@ using System.Windows.Forms;
using System.IO;
using PckStudio.Internal;
using System.Text.RegularExpressions;
using PckStudio.Internal.App;
namespace PckStudio.Classes.Utils
{

View File

@@ -26,6 +26,7 @@ using System.Linq;
using PckStudio.Internal;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
using PckStudio.Internal.App;
namespace PckStudio.Extensions
{

View File

@@ -5,6 +5,7 @@ using System.Windows.Forms;
using MetroFramework.Forms;
using PckStudio.Extensions;
using PckStudio.Internal;
using PckStudio.Internal.App;
using PckStudio.Internal.Json;
namespace PckStudio.Forms.Additional_Popups.Animation

View File

@@ -4,6 +4,7 @@ using System.Threading.Tasks;
using System.Windows.Forms;
using MetroFramework.Forms;
using PckStudio.Internal;
using PckStudio.Internal.App;
using PckStudio.ToolboxItems;
namespace PckStudio.Forms

View File

@@ -20,6 +20,7 @@ using PckStudio.API.Miles;
using PckStudio.Internal;
using PckStudio.Internal.FileFormats;
using PckStudio.Extensions;
using PckStudio.Internal.App;
// Audio Editor by MattNL and Miku-666

View File

@@ -15,6 +15,7 @@ using PckStudio.Properties;
using PckStudio.Internal;
using PckStudio.Extensions;
using PckStudio.Internal.Json;
using PckStudio.Internal.App;
namespace PckStudio.Forms.Editor
{

View File

@@ -13,6 +13,7 @@ using OMI.Workers.Material;
using PckStudio.Internal;
using PckStudio.Extensions;
using PckStudio.Internal.Json;
using PckStudio.Internal.App;
namespace PckStudio.Forms.Editor
{

View File

@@ -19,7 +19,7 @@ using System;
using System.IO;
using System.Reflection;
namespace PckStudio.Internal
namespace PckStudio.Internal.App
{
static internal class ApplicationBuildInfo
{

View File

@@ -10,7 +10,7 @@ using PckStudio.Internal.Misc;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace PckStudio.Internal
namespace PckStudio.Internal.App
{
internal static class ApplicationScope
{

View File

@@ -18,7 +18,7 @@
using System.Linq;
using System.Reflection;
namespace PckStudio.Internal
namespace PckStudio.Internal.App
{
static internal class CommitInfo
{

View File

@@ -23,7 +23,7 @@ using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
namespace PckStudio.Internal
namespace PckStudio.Internal.App
{
internal static class Profiler
{

View File

@@ -21,7 +21,7 @@ using System.ComponentModel;
using System.Configuration;
using PckStudio.Properties;
namespace PckStudio.Internal
namespace PckStudio.Internal.App
{
internal static class SettingsManager
{

View File

@@ -4,6 +4,7 @@ using DiscordRPC;
using PckStudio.Internal;
using PckStudio.Properties;
using DiscordRPC.Logging;
using PckStudio.Internal.App;
namespace PckStudio.Internal.Misc
{

View File

@@ -35,6 +35,7 @@ using PckStudio.Internal.Json;
using PckStudio.Internal.Deserializer;
using PckStudio.Internal.Serializer;
using OMI.Workers;
using PckStudio.Internal.App;
using PckStudio.Internal.Skin;
namespace PckStudio

View File

@@ -166,12 +166,12 @@
<Compile Include="Internal\Json\Entities.cs" />
<Compile Include="Internal\Json\EntityInfo.cs" />
<Compile Include="Internal\ResourceCategory.cs" />
<Compile Include="Internal\App\CommitInfo.cs" />
<Compile Include="External\Format\BlockBenchModel.cs" />
<Compile Include="Internal\Skin\Skin.cs" />
<Compile Include="Internal\Skin\SkinMetaData.cs" />
<Compile Include="Internal\Skin\SkinModelInfo.cs" />
<Compile Include="Internal\Skin\SkinPartOffset.cs" />
<Compile Include="Internal\CommitInfo.cs" />
<Compile Include="Internal\ResourceLocation.cs" />
<Compile Include="Internal\Serializer\ImageSerializer.cs" />
<Compile Include="Internal\Skin\SkinAnimFlag.cs" />
@@ -249,7 +249,7 @@
<Compile Include="Forms\AppSettingsForm.Designer.cs">
<DependentUpon>AppSettingsForm.cs</DependentUpon>
</Compile>
<Compile Include="Internal\ApplicationBuildInfo.cs" />
<Compile Include="Internal\App\ApplicationBuildInfo.cs" />
<Compile Include="Forms\Editor\TextureAtlasEditor.cs">
<SubType>Form</SubType>
</Compile>
@@ -269,12 +269,12 @@
<Compile Include="Internal\IO\PckAudio\PckAudioFileWriter.cs" />
<Compile Include="Internal\Misc\FileCacher.cs" />
<Compile Include="Internal\Misc\OpenFolderDialog.cs" />
<Compile Include="Internal\ApplicationScope.cs" />
<Compile Include="Internal\App\ApplicationScope.cs" />
<Compile Include="Internal\Json\ColorEntry.cs" />
<Compile Include="Internal\Json\TileInfo.cs" />
<Compile Include="Internal\Json\Tiles.cs" />
<Compile Include="Internal\Profiler.cs" />
<Compile Include="Internal\SettingsManager.cs" />
<Compile Include="Internal\App\Profiler.cs" />
<Compile Include="Internal\App\SettingsManager.cs" />
<Compile Include="Internal\Skin\SkinBOX.cs" />
<Compile Include="Extensions\ImageExtensions.cs" />
<Compile Include="Internal\Skin\SkinANIM.cs" />

View File

@@ -7,6 +7,7 @@ using PckStudio.Internal.Misc;
using PckStudio.Internal;
using PckStudio.Properties;
using PCKStudio_Updater;
using PckStudio.Internal.App;
namespace PckStudio

View File

@@ -12,6 +12,7 @@ using System.IO;
using System.Threading.Tasks;
using PckStudio.Internal;
using System.Drawing.Imaging;
using PckStudio.Internal.App;
namespace PckStudio.ToolboxItems
{