mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-21 05:09:35 -05:00
13 lines
279 B
C#
13 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; }
|
|
}
|