mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
eb2cef10c9
Stability intensifies
12 lines
279 B
C#
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; }
|
|
}
|