mirror of
https://github.com/kwsch/PKHeX
synced 2025-03-04 07:17:15 +00:00
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces) Updates all the files, one less level of indentation. Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
49 lines
1 KiB
C#
49 lines
1 KiB
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// <see cref="GameVersion.CXD"/> Game Language IDs
|
|
/// </summary>
|
|
public enum LanguageGC : byte
|
|
{
|
|
/// <summary>
|
|
/// Undefined Language ID, usually indicative of a value not being set.
|
|
/// </summary>
|
|
/// <remarks>Gen5 Japanese In-game Trades happen to not have their Language value set, and express Language=0.</remarks>
|
|
Hacked = 0,
|
|
|
|
/// <summary>
|
|
/// Japanese (日本語)
|
|
/// </summary>
|
|
Japanese = 1,
|
|
|
|
/// <summary>
|
|
/// English (US/UK/AU)
|
|
/// </summary>
|
|
English = 2,
|
|
|
|
/// <summary>
|
|
/// German (Deutsch)
|
|
/// </summary>
|
|
German = 3,
|
|
|
|
/// <summary>
|
|
/// French (Français)
|
|
/// </summary>
|
|
French = 4,
|
|
|
|
/// <summary>
|
|
/// Italian (Italiano)
|
|
/// </summary>
|
|
Italian = 5,
|
|
|
|
/// <summary>
|
|
/// Spanish (Español)
|
|
/// </summary>
|
|
Spanish = 6,
|
|
|
|
/// <summary>
|
|
/// Unused Language ID
|
|
/// </summary>
|
|
/// <remarks>Was reserved for Korean in Gen3 but never utilized.</remarks>
|
|
UNUSED_6 = 7,
|
|
}
|