mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
13 lines
320 B
C#
13 lines
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; }
|
|||
|
}
|
|||
|
}
|