mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
21 lines
485 B
C#
21 lines
485 B
C#
|
namespace PKHeX.Core
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Minimal Trainer Information necessary for generating a <see cref="PKM"/>.
|
||
|
/// </summary>
|
||
|
public interface ITrainerInfo
|
||
|
{
|
||
|
string OT { get; }
|
||
|
ushort TID { get; }
|
||
|
ushort SID { get; }
|
||
|
int Gender { get; }
|
||
|
int Game { get; }
|
||
|
int Language { get; }
|
||
|
|
||
|
int Country { get; }
|
||
|
int SubRegion { get; }
|
||
|
int ConsoleRegion { get; }
|
||
|
|
||
|
int Generation { get; }
|
||
|
}
|
||
|
}
|