Core - Move 'AppLanguage' into 'App' namespace

This commit is contained in:
miku-666
2025-11-22 03:23:30 +01:00
parent b6b6a355a8
commit aa9185d291
3 changed files with 4 additions and 4 deletions

View File

@@ -130,9 +130,9 @@ namespace PckStudio.Properties {
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("SystemDefault")]
public global::PckStudio.Core.AppLanguage UserLanguage {
public global::PckStudio.Core.App.AppLanguage UserLanguage {
get {
return ((global::PckStudio.Core.AppLanguage)(this["UserLanguage"]));
return ((global::PckStudio.Core.App.AppLanguage)(this["UserLanguage"]));
}
set {
this["UserLanguage"] = value;

View File

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PckStudio.Core
namespace PckStudio.Core.App
{
public enum AppLanguage : int
{

View File

@@ -50,7 +50,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Animation.cs" />
<Compile Include="AppLanguage.cs" />
<Compile Include="App\AppLanguage.cs" />
<Compile Include="App\SettingsManager.cs" />
<Compile Include="App\Updater.cs" />
<Compile Include="ArmorPieceDescription.cs" />