PKHeX/PKHeX.Core/Game/Enums/RegionID.cs

17 lines
333 B
C#
Raw Normal View History

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