mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-06 13:40:50 -05:00
9 lines
148 B
C#
9 lines
148 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public interface IRelearn
|
|
{
|
|
IReadOnlyList<int> Relearn { get; }
|
|
}
|
|
} |