mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-20 20:58:30 -05:00
12 lines
351 B
C#
12 lines
351 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Modifies a property to have a "correct" value based on derived legality.
|
|
/// </summary>
|
|
public interface ISuggestModification
|
|
{
|
|
public bool IsMatch(string name, string value, BatchInfo info);
|
|
public ModifyResult Modify(string name, string value, BatchInfo info);
|
|
}
|
|
}
|