PKHeX/PKHeX.Core/Legality/Structures/IRelearn.cs
Kurt ffa70e7626 Move files
no functional change, just putting stuff in a more appropriate folder
2020-01-25 17:22:20 -08:00

9 lines
No EOL
148 B
C#

using System.Collections.Generic;
namespace PKHeX.Core
{
public interface IRelearn
{
IReadOnlyList<int> Relearn { get; }
}
}