PKHeX/PKHeX.Core/Legality/Structures/IRelearn.cs
Kurt eb2cef10c9 Minor clean
Stability intensifies
2022-08-22 23:18:53 -07:00

12 lines
279 B
C#

namespace PKHeX.Core;
/// <summary>
/// Exposes what move IDs are in the relearn moves list on encounter.
/// </summary>
public interface IRelearn
{
/// <summary>
/// Move IDs are in the relearn moves list on encounter.
/// </summary>
Moveset Relearn { get; }
}