mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 00:07:15 +00:00
16 lines
289 B
C#
16 lines
289 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// 3DS Console Region Identifiers
|
|
/// </summary>
|
|
public enum RegionID : byte
|
|
{
|
|
None = 0,
|
|
Japan = 1,
|
|
NorthAmerica = 2,
|
|
Europe = 3,
|
|
China = 4,
|
|
Korea = 5,
|
|
Taiwan = 6,
|
|
}
|
|
}
|