mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
277b1b658d
Insert 3DS into the name to indicate that it's for the 3DS
23 lines
752 B
C#
23 lines
752 B
C#
namespace PKHeX.Core
|
|
{
|
|
public interface IRegionOrigin
|
|
{
|
|
/// <summary> Console hardware region. </summary>
|
|
/// <see cref="Region3DSIndex"/>
|
|
byte ConsoleRegion { get; set; }
|
|
/// <summary> Console's configured Country via System Settings. </summary>
|
|
byte Country { get; set; }
|
|
/// <summary> Console's configured Region within <see cref="Country"/> via System Settings. </summary>
|
|
byte Region { get; set; }
|
|
}
|
|
|
|
public static partial class Extensions
|
|
{
|
|
public static void SetDefaultRegionOrigins(this IRegionOrigin o)
|
|
{
|
|
o.ConsoleRegion = 1; // North America
|
|
o.Region = 7; // California
|
|
o.Country = 49; // USA
|
|
}
|
|
}
|
|
}
|