PKHeX/PKHeX.Core/Legality/Encounters/IRelearn.cs

9 lines
148 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace PKHeX.Core
2019-11-15 17:34:18 -08:00
{
public interface IRelearn
{
IReadOnlyList<int> Relearn { get; }
2019-11-15 17:34:18 -08:00
}
}