PKHeX/PKHeX.Core/Game/Enums/Region3DSIndex.cs
Kurt 277b1b658d Un-nest 3ds console region bitflags
Insert 3DS into the name to indicate that it's for the 3DS
2021-08-02 20:59:40 -07:00

16 lines
339 B
C#

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,
}
}