mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 13:03:06 +00:00
277b1b658d
Insert 3DS into the name to indicate that it's for the 3DS
16 lines
339 B
C#
16 lines
339 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// 3DS Console Region Identifiers used for Generation 6 & 7 Mystery Gifts
|
|
/// </summary>
|
|
public enum Region3DSIndex : byte
|
|
{
|
|
None = 0,
|
|
Japan = 1,
|
|
NorthAmerica = 2,
|
|
Europe = 3,
|
|
China = 4,
|
|
Korea = 5,
|
|
Taiwan = 6,
|
|
}
|
|
}
|