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

17 lines
339 B
C#
Raw Normal View History

namespace PKHeX.Core
{
2019-04-10 03:57:44 +00:00
/// <summary>
/// 3DS Console Region Identifiers used for Generation 6 &amp; 7 Mystery Gifts
2019-04-10 03:57:44 +00:00
/// </summary>
public enum Region3DSIndex : byte
{
None = 0,
2018-06-06 02:07:27 +00:00
Japan = 1,
NorthAmerica = 2,
Europe = 3,
China = 4,
Korea = 5,
Taiwan = 6,
}
}