PKHeX/PKHeX.Core/Game/Enums/Region3DSIndex.cs

16 lines
285 B
C#
Raw Normal View History

namespace PKHeX.Core;
/// <summary>
/// 3DS Console Region Identifiers used for Generation 6 &amp; 7 Mystery Gifts
/// </summary>
public enum Region3DSIndex : byte
{
None = 0,
Japan = 1,
NorthAmerica = 2,
Europe = 3,
China = 4,
Korea = 5,
Taiwan = 6,
}