PKHeX/PKHeX.Core/Legality/Structures/IRelearn.cs

13 lines
279 B
C#
Raw Normal View History

namespace PKHeX.Core;
2022-08-21 08:39:16 +00:00
/// <summary>
/// Exposes what move IDs are in the relearn moves list on encounter.
/// </summary>
public interface IRelearn
2019-11-16 01:34:18 +00:00
{
2022-08-21 08:39:16 +00:00
/// <summary>
/// Move IDs are in the relearn moves list on encounter.
/// </summary>
Moveset Relearn { get; }
}