mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-26 20:33:18 +00: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);
|
|||
|
}
|
|||
|
}
|