mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
e1414a0bea
No code changes
13 lines
333 B
C#
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; }
|
|
}
|