mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +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>
14 lines
244 B
C#
14 lines
244 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Enumerates the various side game data formats that can enter HOME.
|
|
/// </summary>
|
|
public enum HomeGameDataFormat : byte
|
|
{
|
|
None = 0,
|
|
PB7 = 1,
|
|
PK8 = 2,
|
|
PA8 = 3,
|
|
PB8 = 4,
|
|
PK9 = 5,
|
|
}
|