mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
actually just move the language types, don't use the one from the common assembly
This commit is contained in:
parent
b212b4e00a
commit
7e397bef17
8 changed files with 13 additions and 7 deletions
|
|
@ -1,5 +1,8 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
|
using Dalamud.Game;
|
||||||
|
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
|
||||||
// ReSharper disable StringLiteralTypo
|
// ReSharper disable StringLiteralTypo
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
|
||||||
|
using Dalamud.Game;
|
||||||
using Dalamud.IoC;
|
using Dalamud.IoC;
|
||||||
using Dalamud.IoC.Internal;
|
using Dalamud.IoC.Internal;
|
||||||
using Dalamud.Plugin.Services;
|
using Dalamud.Plugin.Services;
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,8 @@
|
||||||
using Dalamud.Utility;
|
namespace Dalamud.Game;
|
||||||
|
|
||||||
namespace Dalamud;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Enum describing the language the game loads in.
|
/// Enum describing the language the game loads in.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Api10ToDo("Delete this, and use Dalamud.Common.ClientLanguage instead for everything.")]
|
|
||||||
public enum ClientLanguage
|
public enum ClientLanguage
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
|
using Dalamud.Game;
|
||||||
|
|
||||||
namespace Dalamud.Interface.Textures;
|
namespace Dalamud.Interface.Textures;
|
||||||
|
|
||||||
/// <summary>Represents a lookup for a game icon.</summary>
|
/// <summary>Represents a lookup for a game icon.</summary>
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
|
using Dalamud.Game;
|
||||||
using Dalamud.Plugin.Services;
|
using Dalamud.Plugin.Services;
|
||||||
|
|
||||||
namespace Dalamud.Interface.Textures.Internal;
|
namespace Dalamud.Interface.Textures.Internal;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
using Dalamud.Game;
|
||||||
using Dalamud.Game.ClientState.Conditions;
|
using Dalamud.Game.ClientState.Conditions;
|
||||||
using Dalamud.Game.ClientState.Objects.SubKinds;
|
using Dalamud.Game.ClientState.Objects.SubKinds;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
using Dalamud.Game;
|
||||||
|
|
||||||
using Lumina;
|
using Lumina;
|
||||||
using Lumina.Data;
|
using Lumina.Data;
|
||||||
using Lumina.Excel;
|
using Lumina.Excel;
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,10 @@
|
||||||
using Dalamud.Utility;
|
using Dalamud.Game;
|
||||||
|
|
||||||
namespace Dalamud;
|
namespace Dalamud.Utility;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Extension methods for the <see cref="ClientLanguage"/> class.
|
/// Extension methods for the <see cref="ClientLanguage"/> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Api10ToDo("Delete this, and use Dalamud.Common.ClientLanguage instead for everything.")]
|
|
||||||
public static class ClientLanguageExtensions
|
public static class ClientLanguageExtensions
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue