PKHeX/PKHeX.Core/PKM/Shared/IHomeTrack.cs

13 lines
320 B
C#
Raw Normal View History

2020-02-13 02:52:48 +00:00
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; }
}
}