mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
11 lines
326 B
C#
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;
|
|
}
|