PKHeX/PKHeX.Core/PKM/Interfaces/IHomeTrack.cs

14 lines
333 B
C#
Raw Normal View History

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