mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
a0eb658ef2
If one wanted to extend ConvertToPKM to other IEncounterables, this would be the provided obj containing the receiver's info allows pkm gen without a savefile, which is nice?
21 lines
No EOL
485 B
C#
21 lines
No EOL
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; }
|
|
}
|
|
} |