mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-19 00:43:14 +00:00
71faaee31c
can now use TrainerID editor control on a savefile... soon?
11 lines
206 B
C#
11 lines
206 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Object has Trainer ownership
|
|
/// </summary>
|
|
public interface ITrainerID
|
|
{
|
|
int TID { get; set; }
|
|
int SID { get; set; }
|
|
}
|
|
}
|