using System.Collections.Generic; namespace PKHeX.Core; /// /// Exposes what move IDs are in the relearn moves list on encounter. /// public interface IRelearn { /// /// Move IDs are in the relearn moves list on encounter. /// IReadOnlyList Relearn { get; } }