PKHeX/PKHeX.Core/PKM/Shared/IHomeTrack.cs
2020-02-12 18:52:48 -08:00

13 lines
No EOL
320 B
C#

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