PKHeX/PKHeX.Core/PKM/Interfaces/IHomeTrack.cs
2022-03-06 12:06:50 -08:00

13 lines
333 B
C#

namespace PKHeX.Core;
/// <summary>
/// Interface that exposes a <see cref="Tracker"/> for Pokémon HOME.
/// </summary>
/// <remarks>Internally called BankUniqueID</remarks>
public interface IHomeTrack
{
/// <summary>
/// Tracker for the associated <see cref="PKM"/>
/// </summary>
ulong Tracker { get; set; }
}