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

9 lines
148 B
C#
Raw Normal View History

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