PKHeX/PKHeX.Core/PKM/HOME/HomeGameDataFormat.cs

15 lines
244 B
C#
Raw Normal View History

2022-08-21 08:39:16 +00:00
namespace PKHeX.Core;
2022-08-21 08:39:16 +00:00
/// <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,
}