PKHeX/PKHeX.Core/PKM/Util/PKX.cs
2022-06-07 23:32:57 -07:00

11 lines
326 B
C#

namespace PKHeX.Core;
/// <summary>
/// Common logic for <see cref="PKM"/> data providing and manipulation.
/// </summary>
public static class PKX
{
internal static readonly PersonalTable Personal = PersonalTable.LA;
public const int Generation = 8;
public const EntityContext Context = EntityContext.Gen8a;
}