mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-12 23:37:07 +00:00
03182ebd3d
Adds support for Scarlet & Violet. Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
12 lines
376 B
C#
12 lines
376 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Latest game values for <see cref="PKM"/> data providing and manipulation.
|
|
/// </summary>
|
|
public static class PKX
|
|
{
|
|
internal static IPersonalTable Personal => PersonalTable.SV;
|
|
public const EntityContext Context = EntityContext.Gen9;
|
|
public const GameVersion Version = GameVersion.SL;
|
|
public const int Generation = 9;
|
|
}
|