mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-18 14:28:33 +00:00
Add more xmldoc Move files/functions to better spot Less allocation on hover glow fix honeytree dppt group/slot/shake rand call (ty real.96)
19 lines
551 B
C#
19 lines
551 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; }
|
|
|
|
/// <summary>
|
|
/// Simple check if a <see cref="Tracker"/> is present.
|
|
/// </summary>
|
|
/// <remarks>Does not ensure that it is a valid tracker, just non-zero.</remarks>
|
|
bool HasTracker => Tracker != 0;
|
|
}
|